What will be output of the following “c” code?
Practice C Preprocessor – What will be output of the following “c” code?
#include
#define SQR(x) x*x
void main()
{
int a =5, b, c;
b = SQR(a++);
c = SQR(++a);
printf("%d %d", b, c);
}