1.

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» C. (arr+4)


Discussion

No Comment Found

Related MCQs