C Programming :: C Preprocessor
-
What will be the output of the program?
#include
-
What will be the output of the program?
#include
#define PRINT(i) printf("%d,",i) int main() { int x=2, y=3, z=4; PRINT(x); PRINT(y); PRINT(z); return 0; } -
What will be the output of the program?
#include