โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#define SQR(x)(x*x)
int main() {
int a, b=3;
a = SQR(b+2);
printf("%d ", a);
return 0;
}
What will be the output of the following program on GCC compiler?
What will be the output of the following program on GCC compiler?
#include
#define SQR(x)(x*x)
int main() {
int a, b=3;
a = SQR(b+2);
printf("%d ", a);
return 0;
}