设有如下形式的字符数组定义:char str[]=”welcome”;则执行下列语句后的输出结果( )。 printf(“%d ”,strlen(strcpy(str,“Hello”)));
A: 7
B: 5
C: 8
D: 9
A: 7
B: 5
C: 8
D: 9
举一反三
- 设有如下形式的字符数组定义:char str[]=”welcome”;则执行下列语句后的输出结果( )。 printf(“%d\n”,strlen(strcpy(str,“Hello”))); A: 7 B: 5 C: 8 D: 9
- 设有如下形式的字符数组定义: char str[]=”welcome”; 则执行下列语句后的输出结果( )。 printf(“%d\n”,strlen(strcpy(str,“Hello”))); A: 5 B: 6 C: 7 D: 8
- 设有如下形式的字符数组定义:charstr[]=”welcome”;则执行下列语句后的输出结果()。printf(“%d”,strlen(strcpy(str,“Hello”))); A: 7 B: 5 C: 8 D: 9
- 中国大学MOOC: 设有如下形式的字符数组定义:char str[]=”welcome”;则执行下列语句后的输出结果( )。printf(“%d\n”,strlen(strcpy(str,“Hello”)));
- 设有定义 char str[] = "Hello"; 则语句 printf("%d %d", sizeof(str), strlen(str)); 的输出结果是( )