/*
* the macros parameters is variable
*/
#include <stdio.h>
#define debug(format, ...) fprintf(stderr, format, ##__VA_ARGS__)
int main(int argc, char **argv)
{
debug(">>> Hello, %s...\n", "sudolee");
return 0;
}
/*
* the macros parameters is variable
*/
#include <stdio.h>
#define debug(format, ...) fprintf(stderr, format, ##__VA_ARGS__)
int main(int argc, char **argv)
{
debug(">>> Hello, %s...\n", "sudolee");
return 0;
}