int matrix[50][100]; // declared a static 2D array of 50 rows, 100 cols ... To dynamically allocate space, use calls to malloc passing in the total number ...
確定! 回上一頁