How do we initialize an array in C? · int arr[5] = {1, 2, 3, 4, 5}; · int arr[5] = {1, 2, 3}; · // Valid. · #include <stdio.h> int main() { // You must mention the ...
確定! 回上一頁