Recent questions tagged preprocessor

1 votes
1 answer
1
#include<stdio.h>#define PRODUCT(x) (x*x)void main(){int i=3,j,k,l;j=PRODUCT(i+1);k=PRODUCT(i++);l=PRODUCT(++i);printf("%d\n%d\n%d\n%d",i,j,k,l);}the answer isa.7b.7c.12d...
1 votes
1 answer
2
To see more, click for the full list of questions or popular tags.