char str[] = "China";printf("%d",strlen(str));输出结果为_______
A: 6
B: 5
C: 4
A: 6
B: 5
C: 4
举一反三
- 以下语句char str[10]={"China"};printf("%d",strlen(str));输出结果是____。
- 设有定义char str[] = "Hello";则语句printf("%d %d", sizeof(str), strlen(str));的输出结果是( )。 A: 5 5 B: 6 6 C: 6 5 D: 5 6
- 以下程序片段的输出结果是______。 char str[]="abc\n\012\\\""; printf("%d",strlen(str)); A: 4 B: 5 C: 6 D: 7
- 设有语句static char str[10]={"china"};printf("%d",strlen(str));则输出结果是( ) 未知类型:{'options': ['10', '5', 'china', '6'], 'type': 102}
- 以下语句输出的结果是______ 。 char<br/>str[10]={"china"}; printf("%d",strlen(str));