【单选题】
有如下定义:char a[][6]={abcde,ABCDE,#@xyz};哪个选项可以输出字符串ABCDE()
【判断题】
char[] str=abcdefgh;
【单选题】
对于以下结构定义:struct{intlen;char*str;}*p;p->str++中的++加在()
【判断题】
String str=abcdefghi;char chr=str.charAt(9);
【单选题】
已有定义char str1[15]={“computer”} , str2[15] ; 则语句用法正确的是()。
【简答题】
下面程序的运行时,输入CLanguage↙,输出是[填空1]。#includestdio.hvoid main( ){ char str[30];scanf(%s,str); printf(%s,str);}
【单选题】
文本文件quiz.txt的内容为"Programming"(不包含引号),以下程序段的运行结果是()。FILE*fp;char*str;if((fp=fopen("quiz.txt","r"))!=NULL)str=fgets(str,7,fp);printf("%s",str);
【单选题】
对字符串str = welcome to china进行下列操作处理时,描述结果正确的是()
①
str.substring(1,5)返回值是elcom
③
str.indexOf(come,4)的返回值为4
④
str.toUpperCase( )的返回值是welcome to china
【单选题】
在JavaScript中,对字符串str=welcome to my home进行以下操作,描述正确的是( )。
①
str.substring(1,6)返回值是welco
④
str.toUpperCase( )的值为“Welcome To My Home”。
【判断题】
char[] chrArray={ a, b, c, d, e, f, g};char chr=chrArray[6];
【单选题】
对字符串str = welcome to china进行下列操作处理时,描述结果正确的是()(选择一项)
①
str.substring(1,5)返回值是elcom
③
str.indexOf(come,4)的返回值为4
④
str.toUpperCase( )的返回值是welcome to china