Which of the following options shows the output or error of the above program?
#include<stdio.h>
#include<conio.h>
#define plus(x) x;
#define minus(x) --x + plus(x);
int main()
{
int x=8,y;
y=minus(x);
printf("y=%d",y);
getch();
}
Reveal answer
Fill a bubble to check yourself