I want to create this...
int main(void) {
int i;
for(i = 0; i < 10; i++){
//Not an important Code
}
return 0;
}
in a fancier way, to create crazy ideas!
Is it possible to rewrite it like this?
#define A f
#define B or
int main(void) {
int i;
AB(i = 0; i < 10; i++){
//Not an important Code
}
return 0;
}
I need to know if it's possible to create instrctions like a simple for composed by diferent #defines