注意:此页面搜索的是所有试题
题目内容
(国家开放大学C语言程序设计课程)
在此程序中,具有文件作用域的变量是( )。
#include<stdio.h>
int x1=5;
static int x2=8;
void main() {
int x3=20;
while(x1+x2<x3) x1+=2;
printf("%d %d %d\n",x1,x2,x3);
}
#include<stdio.h>
int x1=5;
static int x2=8;
void main() {
int x3=20;
while(x1+x2<x3) x1+=2;
printf("%d %d %d\n",x1,x2,x3);
}
参考答案