How to initialize an array to something in C without a loop?

后端 未结 7 1842
灰色年华
灰色年华 2021-01-02 06:58

Lets say I have an array like

int arr[10][10];

Now i want to initialize all elements of this array to 0. How can I do this without loops or

7条回答
  •  清歌不尽
    2021-01-02 07:13

    Besides the initialization syntax, you can always memset(arr, 0, sizeof(int)*10*10)

提交回复
热议问题