• 2022-06-10
    字符串""可以用字符数组来定义,如字符串“hello”可以用字符数组定义为以下哪种形式
    A: char a[6]={‘h’,‘e’,‘l’,‘l’,‘o’,‘\0’};
    B: char a[5]={‘h’,‘e’,‘l’,‘l’,‘o’};
    C: char a[6]= {“hello”};
    D: char a[5]= {“hello”};