Open In App

C | String | Question 7

Like Article
Like
Save
Share
Report

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

C




#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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads