CP F&R Q25

0. The following program
main()
{
int abc();
abc ();
( *abc) ();
}
int abc( )
{
printf ("come");
}

  • Option : B
  • Explanation :
    The function abc can be invoked as abc( ) or ( *abc ) ( ). Both are two different ways of doing the same thing.
Cancel reply
Cancel reply