Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define SQR(x)(x*x) int main() { int a, b=3; a = SQR(b+2); printf("%d\n", a); return 0; }

Next →

Discussion & Comments

No comments yet. Be the first to comment!