标签: c
如何将数组及其信息保存在文本文件中?
.txt: 数组[0] = 1 数组[1] = 0 ...
在代码中: 我希望能够读取文件,然后在下次启动程序时在数组中分配.txt值。
答案 0 :(得分:1)
documentation of the function fwrite() on the site cppreference.com包含一个将数组写入文件然后将其读回的示例。这似乎正是您想要的。