Answer is:
prints 123
179) The following program
main()
{
int abc();
abc ();
( *abc) ();
}
int abc( )
{
printf ("come");
}
Answer is:
prints come come
Answer is: