โช 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;
}
#include
int main(x,y)
int x; char *y[];
{
printf("%d %s", x, y[1]);
return 0;
}
output when invoked as a.out arg1