以下语句char str[10]={"China"};printf("%d",strlen(str));输出结果是____。
举一反三
- 以下语句输出的结果是______ 。 char<br/>str[10]={"china"}; printf("%d",strlen(str));
- 下列语句的执行结果是。 static char str[10]={“china”}; printf(“%d”,strlen(str));
- 以下语句char str[ ]={"China"};printf("%d",sizeof(str));输出结果是____。
- 设有语句static char str[10]={"china"};printf("%d",strlen(str));则输出结果是( ) 未知类型:{'options': ['10', '5', 'china', '6'], 'type': 102}
- 设有定义 char str[] = "Hello"; 则语句 printf("%d %d", sizeof(str), strlen(str)); 的输出结果是( )