下列程序的输出结果为_________。 #include struct abc { char c; float v; }; void main() { abc a={'B',98.5}; cout
举一反三
- #include struct ab { char a[5]; float b; }; void main() { ab x={"Li",89.6}; cout
- 写出下面程序的运行结果。struct abc{ int a; float b; char *c; }; int main(void) { struct abc x = {23,98.5,"wang"}; struct abc *px = &x; printf("%d, %s, %.1f, %s \n", x.a, x.c, (*px).b, px->c ); return 0;}
- 下面程序的输出结果为______ #include<iostream.h> void main() { cout<<"Hello\b"; }
- 以下程序的运行结果是( ) #include struct student { int num; char name[20]; float score; }stu1={1002,"liling",98.5}; void main( ) { struct student *p; p= printf("%s\n",p-name); } A: 1002 B: liling C: 98.5 D: 不确定的值
- 下面程序的输出结果为 ______。includemain(){char pl [7]="abc",p[]2="ABC"str[50]=" 下面程序的输出结果为 ______。 #include<string.h> main() { char pl [7]="abc",p[]2="ABC"str[50]="xyz"; strcpy(str,strcat(p1,p2)); printf("%s"str); } A.xyzabcABC B.abcABC C.xyzabc D.xyzABC