📜  如何在 c 中从 bin 文件写入 2d 数组 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:57.049000             🧑  作者: Mango

代码示例1
struct test arr[3][3];
for(int i = 0;i<3;i++){
    for(int j = 0;j<3;j++){
        fwrite(arr[i][j], sizeof(struct test), 1, fp);
    }
}