有以下程序 #include<string.h> #include<iostream.h> void main( ) { char*p="abcde\0fghjik\0"; cout<<strlen(p);} 程序运行后的输出结果是
A: 12
B: 15
C: 6
D: 5
A: 12
B: 15
C: 6
D: 5
举一反三
- 有以下程序 #include<string.h> #include<iostream.h> void main( ) { char *p="abcde\0fghjik\0"; cout < < strlen(p);} 程序运行后的输出结果是( )。 A: C++语言是C语言的超集 B: C++语言对C语言进行了扩充 C: C++语言包含C语言的全部语法特征 D: C++语言与C语言都是面向对象的程序设计语言
- 有以下程序#include <stdio.h>#include <string.h>main(){ char str[ ][20]={“One*World”, “One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是()
- 中国大学MOOC: 下面程序输出结果为:#include<iostream>using namespace std;#include<string.h>int main( ){ char st[20]="hello\0\t\\"; cout<<strlen(st); cout<<sizeof(st)<<endl; cout<<st; return 0;}
- 以下程序的输出结果______。 #include<iostream.h> void main() int a=0 a+=(a=8); cout<<a;
- 以下程序 #include <string.h> main() {char str[][20]={"Hello","Beijing"},*p=str; printf("%d ",strlen(p+20)); } 程序运行后的输出结果是