C語言中數組的初始化

來源:互聯網
上載者:User

標籤:

 

在C語言中,數組的初始化有以下幾種方式:

 1. 定義的時候同時初始化:

    int array[10] = {1,2,3,4,5};

 2. 定義的時候不指定數組大小,由初始化的數組元素來確定大小:

    int array[] = {1,2,3,4,5};

 3. 先定義變數,然後初始化.注意點:定義變數時必須制定數組的大小.此時只能對陣列變數成員元素逐一賦值,不能批量賦值.

 

     //    int array[]; //錯誤用法

     int array[12];

     //    array = {1, 2, 3}; //錯誤用法.

     array[0] = 1;

     array[1] = 2;

     array[2] = 3;

 4. 只有一種情況,在作為方法的形式參數時,可以不指定數組的大小.這時傳入方法的是數組的首地址,所以在方法內部是無法得到數組長度的,數組長度必須作為參數傳入函數.

    void test()

    {

        int array[] = {1,2,3,4,5};

        int length = sizeof(array)/sizeof(int);

        int result = sumOfArray(array, length);

        printf("%d",result);

    }

 

    int sumOfArray(int array[], int length)

    {

        int result = 0;

        for (int i=0; i<length; i++)

        {

            result += array[i];

        }

        return result;

    }

 

C語言中數組的初始化

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.