177) The following program
main ()
{ int a = 4;
change { a };
printf ("%d", a);
}
change (a)
int a;
{
printf("%d", ++a);
} outputs
Answer is:
54
Related C Programming MCQ with Answers
Answer is:
prints 123
179) The following program
main()
{
int abc();
abc ();
( *abc) ();
}
int abc( )
{
printf ("come");
}
Answer is:
prints come come
Answer is: