在以下程序段的空白处填入(),能够正确输出teacher。 #include main() {char *p[3]={"student","teacher","classroom"}; printf("%s", ); }
举一反三
- 在以下程序段的空白处填入(),能够正确输出teacher。 #include main() {char *p[3]={"student","teacher","classroom"}; printf("%s", ); }
- 在以下程序段的空白处填入(),能够正确输出teacher。
- 有以下程序 # include<stdio .h> main() { char s[」=”rstuv"; printf(”%c\n”,*s+2); } 程序运行后的输出结果是
- 在以下程序段的空白处填入(),能够使程序正确运行。 #include<stdio.h> int sum(int x,int y) {return x+y; } main() {int a=3,b=5,c; p=sum; c=(*p)(a,b); printf("%d",c); }
- 有以下程序段,输出结果为()。 #include <stdio.h> struct s { int a; char b; double f; }; main() { printf("%d",sizeof(struct s)); }