问题详情

有以下程序

#include <stdio.h>

int a= 5;

void fun(int b)

{ int a= 10;

a+=b; printf("%d",a);

}

main()

{ int c=20;

fun(c);a+=c;printf("%d\n",a);

}

程序运行后的输出结果是 【 1 1 】 。

参考答案
您可能感兴趣的试题