标签: 找工作

1 篇文章

thumbnail
笔试合集
1、宏定义printf() 问题提出 有时候我们想用宏定义来决定是编译debug版本的代码还是release的代码,dubug版本的代码会通过printf打印调试信息,release版本的代码则不会。我们总不能对每一条printf都这样写: #if IS_DEBUG printf("hello world!"); #endif …