What exactly are the benefits of using #define directives like this :
include<stdio.h>
define QUICK(x) printf("%s\n",x);
define ADD(x, y) printf("%d\n",x+y);
int main() { QUICK("Hello!") ADD(5,6) return 0; }
What exactly are the benefits of using #define directives like this :
int main() { QUICK("Hello!") ADD(5,6) return 0; }