A.5
B.6
C.11
D.12
[单选题]下列语句的输出结果 cout<<strlen("/t/"/065/xff/n");A.5B.14C.8D.输出项不合法,无正常输出
[单选题]下列语句的输出结果 cout<<strlen("/t/,/065/xff/n");A.5B.14C.8D.输出项不合法,无正常输出
[主观题]char *p="hello";printf("%s",p);p++;printf("%s",p);printf("%c",*p);
[单选题]设有如下的程序段: char str[]="Hello"; char *ptr; ptr=str; 执行完上面的程序段后,*(ptr+5)的值为( )。A.'o'B.'/0'C.不确定的值D.'o'的地址
[主观题]定义字符指针char *str="hello",已知sizeof(str)=4,则strlen(str)=______。
[单选题]假设有以下代码: String s="hello"; String t="hello"; char c[ ]={'h','e','l','l','o'}; 下列选项中,返回false的语句是______。A.s.equals(t);B.t.equals(c);C.s==t;D.t.equals(new String("hello"));
[主观题]char str[ ]= "Hello";char *p=str;int n=10;sizeof(str)=( )sizeof(p)=( )sizeof(n)=( )void func(char str[100]){ }sizeof(str)=( )
[主观题]char str[ ]= "Hello";char *p=str;int n=10;sizeof(str)=( )sizeof(p)=( )sizeof(n)=( )void func(char str[100]){ }sizeof(str)=( )
[单选题]若有定义语句:char s[10]="1234567/0/0";,则strlen(s)的值是______。A.7B.8C.9D.10
[单选题]若有定义语句:char s[10]="1234567/0/0";,则strlen(s)的值是______。A.7B.8C.9D.10