What will be the output of the following program?
		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?


main(int argc,char *argv[])
{
printf((argc > 1 ? "%c" : "%c",*++argv);
}

If the i/p string is “GESL Bangalore”)

A. G
B. E
C. B
D. GESL

Leave a Comment