Programming Languages C Objective
Mar 07, 2013

#include<stdio.h>

void main()

{

char *str="CQUESTIONBANK";

clrscr();

printf(str+9);

getch();

}

What will output when you compile and run the above code?

 

Choose the correct answer:
A) CQESTIONBANK
B) BANK
C) Compiler error
D) CQUESTION
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback