Top

Discussion

 

The following program won’t compile because there’re space between macro name and open parenthesis.

#include "stdio.h"
 
#define MYINC   (  a  )  (  ( a )  +  1 )
 
int main()
{
 
 printf("GeeksQuiz!");
 
 return 0;
}

 

  • A.TRUE
  • B.FALSE

Answer: B

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment