Call function with arguments without parenthesis in C?
When a function does not have any argument, it is possible to call it
without parenthesis by define as
#define test test()
Is it possible to call a function with argument without paranthesis?
Something like
#define test test(char *arg)
test "argument 1";
No comments:
Post a Comment