问答详情
源自:6-1 数组初体验

大家来找不同了,上面那个编译不出来QAQ

#include <stdio.h>

int main()

{

    //第一种形式

    int arrFirst[3] = {1,2,3};

    //第二种形式

    int arrSecond[] = {1,2,3};

    //第三种形式

    int arrThird[3];

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

    int arrThird[0] = 1;

    int arrThird[1] = 2;

    int arrThird[2] = 3;

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

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

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

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

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

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

    return 0;

}



#include <stdio.h>

int main()

{

    //第一种形式

    int arrFirst[3] = {1,2,3};

    //第二种形式

    int arrSecond[] = {1,2,3};

    //第三种形式

    int arrThird[3];

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

    arrThird[0]=1;

    arrThird[1]=2;

    arrThird[2]=3;

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

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

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

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

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

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

    return 0;

}


提问者:慕工程9689686 2019-01-18 13:24

个回答

  • 慕粉1942446558
    2019-03-22 20:07:18

    那三个int不需要的,就是在arrThird前面的连着三个。

  • 慕工程9689686
    2019-01-18 13:37:56

    找到了那个int arrThird[0]=1;前面没有int