看我的代码
#include<stdarg.h>
#define DPRINTF(_fmt, ...) debugPrintf(_fmt,__VA_ARGS__)
void debugPrintf(const char *fmt, ...)
{
char buf[128];
va_list ap;
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
fprintf(stderr,"%s",buf);
return;
}
main()
{
int a=10;
DPRINTF("a is %d",a);
DPRINTF("WHY THIS STATEMENT GETS ERROR");
}
为什么这段代码不能编译??当我评论时
//DPRINTF("WHY THIS STATEMENT GETS ERROR");
它工作正常..
有没有办法用...(变量参数)编写调试来处理我不想传递任何变量的情况