Top

Discussion

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

#include  
int main()  
{  
  char arr[] = "GeeksQuiz";  
  printf("%s", ?);  
  return 0;  
} 

 

  • A.arr
  • B.(arr+5)
  • C.(arr+4)
  • D.Not possible

Answer: B

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment