What will be the output of the following “C” program?
		
					

Loading

โœช Choose the correct option.

What will be the output of the following “C” program?


#include
int main(x,y)
int x; char *y[];
{
printf("%d %s", x, y[1]);
return 0;
}

output when invoked as a.out arg1

A. 1 a.out
B. 1 arg1
C. 2 a.out
D. 2 arg1

Leave a Comment