175) void can be used
Answer is:
both as a data-type of a function that returns nothing to its calling environment & inside the brackets of a function that does not need any argument
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: