+ 2
How macro works ...in C program...? Please Explain
#include <stdio.h> #define square(x) x*x int main() { printf("%d",square(4-1)); return 0; }
3 Answers
+ 2
Thanks alot
+ 2
Preprocessors is just a simple text repelecment.
#include <stdio.h> #define square(x) x*x int main() { printf("%d",square(4-1)); return 0; }