以下C语言程序的输出结果是( )。struct s{int x,y;}data[2]={10,100,20,200};main( ){struct s*p=data;p++;printf(“%d\n”,++(p->x));}
A10
B11
C20
D21
相关试题
-
以下C语言程序的输出结果是( )。struct s{int x,y;}data[2]={10,100,20,200};main( ){struct s*p=data;p++;printf(“%d\n
-
有以下程序 #include struct S { int a,b;}data[2]={10,100,20,200}; main() { struct S p=data[1];
-
以下程序 struct stu { int num; char name[10]; int age; }; void fun(struct stu *p) { printf
-
main() { struct ord *p=dt; printf(%d,,++(p->x)); printf(%d\n,++(p->y)); } 程序运行后的输出结果是()。
-
以下程序 struct STU{ char name[10]; int num; }; void f1(struct STU c) { struct STU b={LiSiGuo,2042}; c=