178) The following program
main()
{
inc(); inc(); inc();
}
inc()
{
static int x;
printf("%d", ++x);
}
Answer is:
prints 123
Related C Programming MCQ with Answers
179) The following program
main()
{
int abc();
abc ();
( *abc) ();
}
int abc( )
{
printf ("come");
}
Answer is:
prints come come
Answer is: