以下程序段的输出结果是( ) char s[]="\113vwxyz\x41"; printf("%d\n",strlen(s));
A: 8
B: 10
C: 3
D: 7
A: 8
B: 10
C: 3
D: 7
举一反三
- 以下程序段的输出结果是()chars[]=\113vwxyz\x41;printf(%d\n,strlen(s));
- 程序段 char s[ ]="\\\102abc";printf("%d\n", strlen(s)); 的输出结果是: A: 5 B: 8 C: 9 D: 10
- 下列程序段的输出结果是______。 char s[ ]=”\\\102abc”; printf(“%d\n”,strlen(s)); A: 5 B: 8 C: 9 D: 10
- 以下程序段的输出结果是?char s[]="hello\t中国";printf(“%d\n”,strlen(s)); A: 8 B: 9 C: 10 D: 11
- 以下程序段的输出结果是()。 Char s[]I=”\1238\080abc”; printf(”%d\n”,strlen(s));