在C語言中,可以通過以下步驟創建一個二維空數組:
下面是一個示例代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
int rows, cols, i, j;
printf("Enter the number of rows: ");
scanf("%d", &rows);
printf("Enter the number of columns: ");
scanf("%d", &cols);
// 創建二維數組
int** arr = (int**)malloc(rows * sizeof(int*));
for (i = 0; i < rows; i++) {
arr[i] = (int*)malloc(cols * sizeof(int));
}
// 打印二維數組
for (i = 0; i < rows; i++) {
for (j = 0; j < cols; j++) {
printf("%d ", arr[i][j]);
}
printf("\n");
}
// 釋放內存
for (i = 0; i < rows; i++) {
free(arr[i]);
}
free(arr);
return 0;
}
該代碼首先要求用戶輸入二維數組的行數和列數。然后,使用malloc()函數分配內存來存儲二維數組的行和列。最后,打印二維數組的內容,并釋放分配的內存。