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 *str="hello",已知sizeof(str)=4,则strlen(str)=______。
[单选题]设有如下的程序段: char str[]="Hello"; char *ptr; ptr=str; 执行完上面的程序段后,*(ptr+5)的值为( )。A.'o'B.'/0'C.不确定的值D.'o'的地址
[单选题]设有下列的程序段: char str[]="Hello World"; char*ptr; ptr=str; 执行上面的程序段后,*(ptr+10)的值为( )。A.'/0'B.'0'C.不确定的值D.'0'的地址
[主观题]strcpy(str,"hello");
[主观题]char *p="hello";printf("%s",p);p++;printf("%s",p);printf("%c",*p);
[单选题]串的操作函数str定义为: int str(char*s){ char*p=s; while(*p!=’/0')p++; return p=s; } 则str("abcde")的返回值是 ( )A.3B.4C.5D.6
[单选题]请读程序段: char str[]="ABCD",*p=str; printf("%d/n",*(p+4)); 程序段的输出结果是______。A.68B.0C.字符'D'的地址D.不确定的值
[单选题]请读程序段: char str[]="ABCD",*p=str; printf("%d/n",*(p+4)); 程序段的输出结果,是_______。A.68B.0C.字符'D'的地址D.不确定的值
[单选题]请读程序段:char str[]="ABCD",*p=str;printf("%d/n",*(p+4));程序段的输出结果是 ______。A.68B.0C.字符D的地址D.不确定的值