• 2022-07-25
    以下错误的字符数组的赋值方式是【 】。
    A: char string[]="I am a student.";
    B: char *p="I am a student";
    C: char str[20]; str="I am a student.";
    D: char str[20];strcpy( str,"I am a student.") ;
  • C

    内容

    • 0

      下列程序片段中不正确的字符串赋值或初始化方式是( )。 A: char str[10]; str=”string”; B: char *str; str=”string”; C: char str[7]={’s’,’t’,’r’,’i’,’n’,’g’,’0’}; D: char str[ ]=”string”;

    • 1

      在以下字符串String的赋值运算中,错误的是( )。? char str[]= { 'S' ,'t', 'r' ,'i','n', 'g',0};|char str[10]= { 'S' ,'t', 'r' ,'i','n', 'g','\0'};|char str[6]= { 'S' ,'t', 'r' ,'i','n', 'g'};|char str[10]= "String";

    • 2

      以下给字符数组str定义和赋值正确的是( )。 A: char str[10]; str={"China!"}; B: char str[ ]={"China!"}; C: char str[10]; strcpy( str,"abcdefghijkl"); D: char str[10]={"abcdefghijkl"};

    • 3

      不正确的字符串赋值或初始化方式是________。 A: char *str; str = "string"; B: char str[7] = {'s', 't', 'r', 'i', 'n', 'g'}; C: char strl[l0]; strl = "string"; D: char strl[ ] = "string", str2[ ] = "12345678"; strcpy (str2, strl);

    • 4

      【单选题】如果输出语句:printf(“I am “student" you is teacher "). 显示内容? A. I am “student"   you is teacher B. I am  student you is teacher C. I am student    you is teacher D. I am “student" you is teacher