我想条件编译一个DEBUGPRINT的宏函数,一开始我是这么写的
#define DEBUGPRINT(fmt,...)\ do{printf("DEBUG:"fmt,__VA_ARGS__}while(0)\
但是如果我这么调用 DEBUGPRINT("balabala") ,没有第二个参数的话,就会报错,应该如何定义可以,但是如果定义成 DEBUGPRINT(...) ,我又不能很好的控制格式.有什么解决方法么?
DEBUGPRINT("balabala")
DEBUGPRINT(...)
c 宏 c语言 macro
试试这样:
c #include <stdio.h> #define DPRINTF(FORMAT, args...) printf(FORMAT, ##args) int main(void) { printf("I'm real printf.\n"); DPRINTF("I'm printed by %s.\n", "DPRINTF"); DPRINTF("I'm printed with 2 args:a=%d, b=%d.\n", 100, 500); }
c
#include <stdio.h> #define DPRINTF(FORMAT, args...) printf(FORMAT, ##args) int main(void) { printf("I'm real printf.\n"); DPRINTF("I'm printed by %s.\n", "DPRINTF"); DPRINTF("I'm printed with 2 args:a=%d, b=%d.\n", 100, 500); }
关于C语言getchar()
看过C语言程序设计现代方法之后再看什么书提高比较合适?
C语言这段预处理命令错在哪里?为什么编译器报错?
一个有关宏的问题
c语言字符串问题
有哪些不能更赞的宏定义?