Predict the output of the following program:
#include
int main()
{
char str[] = "%d %c", arr[] = "GeeksQuiz";
printf(str, 0[arr], 2[arr + 3]);
return 0;
}
Answer: C
No answer description available for this question.