#include<stdio.h>
int main()
{
printf("India", "CURIOUSTAB\n");
return 0;
}
Options
A. Error
B. India CURIOUSTAB
C. India
D. CURIOUSTAB
Correct Answer
India
Explanation
printf("India", "CURIOUSTAB\n"); It prints "India". Because ,(comma) operator has Left to Right associativity. After printing "India", the statement got terminated.