首页
软考题库
知识库
APP
注册/登录
题目
以下C语言程序的输出结果是( )。
struct s
{int x,y;}
data[2]={10,100,20,200};
main(){
struct s *p=data;
p++;
printf(“%d\n”,++(p->x));
}
作答
10
11
20
21
答案/解析
查看试卷及答案