参考答案和解析
正确答案:正确
更多“已知“chars[10]="hello";”,则s[5]的值为'\0'。() ”相关问题
  • 第1题:

    若有以下定义,则 *(p+5) 的值为 () char s[ ]="Hello”, *p=s;

    A.'0'

    B.'0'

    C.'0'的地址

    D.不确定的值


    D

  • 第2题:

    【单选题】下列是为字符数组赋字符串的语句组,其中错误的是 。

    A.char s[l0]; s="program";

    B.char s[]=" program";

    C.char s[l0]="Hello!";

    D.char s[l0];strcpy(s,"hello !");


    char s[10]; s= ” program ” ;

  • 第3题:

    5、下列是为字符数组赋字符串的语句组,其中错误是:

    A.char s[10]; s=”program”;

    B.char s[]=”program”;

    C.char s[10]=”Hello!”;

    D.char s[10];strcpy(s,”hello!”);


    char s[10]; s= ” program ” ;

  • 第4题:

    下列是为字符数组赋字符串的语句组,其中错误是:

    A.char s[10]; s=”program”;

    B.char s[]=”program”;

    C.char s[10]=”Hello!”;

    D.char s[10];strcpy(s,”hello!”);


    char s[10]; s= ” program ” ;

  • 第5题:

    C语言的以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是()

    A.char s[10]= "hello ";

    B.char s[10]; s= "hello";

    C.char t[]="hello",*s=t;

    D.char s[10]; strcpy(s, "hello");


    char s[10];s="abcdefg";