执行下列程序段的输出结果为( )。 char s1[20]="Love",s2[]="China"; strcpy(s1,s2); puts(s1);
A: Love
B: China
C: LoveChina
D: ChinaLove
A: Love
B: China
C: LoveChina
D: ChinaLove
举一反三
- 执行下列程序段的输出结果为( )。 char s1[20]="Love",s2[]="China"; s1=s2; puts(s1); A: Love B: China C: LoveChina D: 有语法错误,没有输出
- 执行下列程序段的输出结果为。 char s1[20]="Love",s2[]="China"; s1=s2; puts(s1);
- 执行下列程序段后,将输出( )。 char s1[20]="Love",s2[]="Love "; printf("%d\n",strcmp(s1,s2)); A: 一个正整数 B: 一个负整数 C: 0 D: -1
- char s1[ ] = "hello ";char s2[ ] = "tangx ";strcpy(s1, s2);printf("%s\n", s1);以上代码段执行结果为哪个选项? A: hello tangx B: tangx hello C: hello D: tangx
- 下面程序的运行结果是______ 。#include#includemain(){ char s1[20],s2[20]} gets(s1); scanf(“%s”,s2); puts(s1); puts(s2); }运行程序,输入: Thank you! Good morning!