Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C | Input and Output | Question 6

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Predict the output of below program:




#include <stdio.h>
int main()
{
    printf("%c ", "GeeksQuiz"[5]);
    return 0;
}

(A) Compile-time error
(B) Runtime error
(C) Q
(D) s


Answer: (C)

Explanation: The crux of the program lies in the expression: “GeeksQuiz”[5].
This expression is broken down by the compiler as: *(“GeeksQuiz” + 5). Adding 5 to the base address of the string increments the pointer(lets say a pointer was pointing to the start(G) of the string initially) to point to Q. Applying value-of operator gives the character at the location pointed to by the pointer i.e. Q.

My Personal Notes arrow_drop_up
Last Updated : 11 Jan, 2013
Like Article
Save Article
Similar Reads