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;
}
Answer: B
No answer description available for this question.