207) Consider the following program.
main()
{
putchar ( 'M' );
first();
putchar ( 'm');
}
first ( )
{ _____ }
second ( )
{
putchar ( 'd');
}
If Madam is the required output, then the body of first ( ) must be
Answer is:
putchar( 'a' ) ; second(); printf ("%c", 'a' );
Related C Programming MCQ with Answers
Answer is:
will not compile successfully
Answer is: