Open In App

C | Input and Output | Question 4

Like Article
Like
Save
Share
Report

C




#include <stdio.h>
// Assume base address of \"GeeksQuiz\" to be 1000
int main()
{
   printf(5 + \"GeeksQuiz\");
   return 0;
}


(A)

GeeksQuiz
 

(B)

Quiz
 

(C)

1005
 

(D)

Compile-time error
 


Answer: (B)

Explanation:

printf is a library function defined under stdio.h header file. The compiler adds 5 to the base address of the string through the expression 5 + \”GeeksQuiz\” . Then the string \”Quiz\” gets passed to the standard library function as an argument.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 09 Jan, 2013
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads