64

单选题 64 /69

以下程序的输出结果为
#include <stdio.h>
int func(int x, int y) { return (x + y); }

int main() {
    int a = 1, b = 2, c = 3, d = 4, e = 5;
    printf("%d\n", func((a + b, b + c, c + a), (d, e)));
    return 0;
}

参考答案

15
5
9
出错