Open In App

C | String | Question 7

In below program, what would you put in place of “?” to print “Quiz”?
 




#include <stdio.h>
int main()
{
  char arr[] = \"GeeksQuiz\";
  printf(\"%s\", ?);
  return 0;
}

(A)



arr
 

(B)



(arr+5)
 

(C)

(arr+4)
 

(D)

Not possible
 

Answer: (B)
Explanation:

Since %s is used, the printf statement will print everything starting from arr+5 until it finds ‘\\0’
 

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

Article Tags :