网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

若有定义char str[]= “very good”,则str的长度为( )

A. 8

B. 9

C. 10

D. 11


参考答案

更多 “ 若有定义char str[]= “very good”,则str的长度为( )A. 8B. 9C. 10D. 11 ” 相关考题
考题 定义字符指针char *str="hello",已知sizeof(str)=4,则strlen(str)=______。

考题 设有如下函数定义,则输出结果为______。 char*fun (char*str) {char*p=str; while(*p) { if(*p>'d') continue; p++; } return p; } main() { printf("%s\n",fun("welcome!")); }A.welcome!B.come!C.wD.程序陷入死循环中

考题 若有定义:charstr1[6]="abcdm",*ps,*str2="abcdef";则()是正确的 A.strcpy(str1,str2)B.表达式strcmp(str1,str2)的值大于0C.str1=str2D.表达式strlen(str1)的值为6

考题 下面的程序各自独立,请问执行下面的四个TestMemory 函数各有什么样的结果?①void GetMemory(char * p){p = (char * )malloc(100);}void TestMemory (void){char *str = NULL;GetMemory (str);strcpy(str, "hello world");prinff(str);}② char * GetMemory (void){char p[ ] = "hello world";return p;}void TestMemory (void){char * str = NULL;str = GetMemory( );printf(str);}③void GetMemory(char * * p, int num){* p = (char * )malloc(num);}void TestMemory (void){char * str = NULL;GetMemory(str, 100);strcpy( str, "hello" );printf(sir);}④void TestMemory (void){char *str = (char * )malloe(100);strepy (str, "hello" );free ( str );if(str ! = NULL){strepy( str, "world" );printf(str);}}

考题 子网掩码为255.128.0.0,该掩码又可以写为( )。A./8B./9C./10D./11

考题 设有如下函数定义,则输出结果为_______。 char*fun(char*str) { char*p=str; while(*p) {if(*p>'d')continue; p++; } return p; } main() { printf("%s\n",fun("welcome!")); }A.welcomeB.come!C.wD.程序进入死循环

考题 串的操作函数str定义为: int str(char*s){ char*p=s; while(*p!=’\0')p++; return p=s; } 则str("abcde")的返回值是 ( )A.3B.4C.5D.6

考题 若有定义char str[20]="tGoodt",则strlen(str)的值为7。

考题 请在划线处填写适当内容完成程序功能:获得字符串str的长度。int Getlength(char* str){ char* p=str; while(*p!='0') p++; return ________; }A.pB.strC.p-strD.str-p