知识点:C/C++ 1/10(单选) What is the output...
发布于 2022-03-03 17:30:53
下面代码的输出为()
#define MAX(a, b) ((a) > (b) ? a : b ) int main() { int a = 5, b = 0 int c = MAX(++a, b) int d = MAX(++a, b + 10) printf("%d %d %d %d\n", a, b, c, d) return 0 }
登录后免费查看答案
关注者
0
被浏览
19