C语言两个printf,后面的printf函数不输出
时间: 2023-12-19 13:31:14 浏览: 109
以下是两个printf函数,后面的printf函数不输出的C语言代码:
```c
#include <stdio.h>
int main() {
printf("Hello, world!\n"); // 输出:Hello, world!
if (printf("")) {} // 不输出任何内容
printf("Goodbye, world!\n"); // 输出:Goodbye, world!
return 0;
}
```
阅读全文