#define PO_FUNC(bar) bar()
What that means is that whenever you want to call a function, you do it byPO_FUNC(your_function_name)
Here's an example:
#include <stdio.h>
#define PO_FUNC(bar) bar()
void hello(){
printf("Hello For All");
}
int main(int argc, char* argv[]){
PO_FUNC(hello); // This is the same case as hello()
return 0;
}
No comments:
Post a Comment