550 views
0 0 votes
What will be output of the following C code
void main( )
{
static int main;
int a;
a = value(main);
printf(“%d”, a);
}
int value(int val2)
{
val2++;
return val2;
}

1 Answer

Position:
Show:

No related questions found