𝗤𝗨𝗜𝗖𝗞 𝗧𝗘𝗖𝗛 𝗣𝗢𝗜𝗡𝗧
What is the output of the following code?#include <stdio.h>#define SQUARE(x) x * xint main() { int a = 3; printf("%d\n", SQUARE(a + 1)); return 0;}
2 months ago | [YT] | 2
𝗤𝗨𝗜𝗖𝗞 𝗧𝗘𝗖𝗛 𝗣𝗢𝗜𝗡𝗧
What is the output of the following code?
#include <stdio.h>
#define SQUARE(x) x * x
int main() {
int a = 3;
printf("%d\n", SQUARE(a + 1));
return 0;
}
2 months ago | [YT] | 2