为了账号安全,请及时绑定邮箱和手机立即绑定

数组里不能放英文吗?

#include <stdio.h>

int main()

{

    //第一种形式

    int arrFirst[5] = {a,b,c,d,e};

    //第二种形式

    int arrSecond[] = {9,8,7,6,5};

    //第三种形式

    int arrThird[5];

    //给arrThird数组每个元素初始化

    arrThird[0]=11;

    arrThird[1]=22;

    arrThird[2]=33;

    arrThird[3]=44;

    arrThird[4]=55;

    //输出第一个数组中的第二个元素

    printf("%c\n", arrFirst[1]);

    //输出第二个数组中的第二个元素

    printf("%d\n", arrSecond[1]);

    //输出第三个数组中的第二个元素

    printf("%d\n",arrThird[1]);

    return 0;

}


正在回答

1 回答

可以的 但是你少了单引号 字符格式 %c {'a','b','c'}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

数组里不能放英文吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信