c试题-请输入下面c代码的执行结果

#include <stdio.h>

int main() {
    int x = 5;
    int y = x++ + ++x;
    printf("y = %d\n", y);
    return 0;
}

网友评论0