Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Input and Output | Question 5

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 16 Jan, 2023
Improve Article
Save Article

Predict the output of the below program:

C




#include <stdio.h>
 
int main()
{
    printf(\"%c \", 5[\"GeeksQuiz\"]);
    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: 5[\”GeeksQuiz\”] This expression is broken down by the compiler as: *(5 + \”GeeksQuiz\”). 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.


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

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!