What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("C programming %s", "Class by\n%s Shyam", "WOW");
}
#include <stdio.h>
int main()
{
printf("C programming %s", "Class by\n%s Shyam", "WOW");
}
A. C programming Class by
WOW Shyam
B. C programming Class byn%s Shyam
C. C programming Class by
%s Shyam
D. Compilation error
Answer: Option C
Join The Discussion