I have the following code:
我有以下代码:
#include<stdio.h>
#include<stdlib.h>
#define MACRO_TEST(MESSAGE,args...) { \
const char *A[] = {MESSAGE}; \
printf("this is a test\n");\
if(sizeof(A) > 0) \
printf(*A,##args); \
}
int main () {
MACRO_TEST();
MACRO_TEST("hello %d\n",5);
return 0;
}
#include