我的程序中有一个写入 argv[1] 的 FILE 对象
tabptr = fopen(argv[1],w+)
我需要从同一个文件中读取,但是我将如何创建一个指向 tabptr 的指针,该指针可以从 argv[1] 读取而不是写入?或者我只是在想这个过程。
tabptr = fopen(argv[1],w+)
//tabptr writes to argv[1]...
//time to declare file to read from the same tabptr wrote to
FILE * tabptrStr = tabptr //how would i make tabptrStr readable?
tabptrStr = fopen(argv[1],"r") //or am i just overthinking this and this will accomplish my goal?
argv[1] 让我感到困惑,我是来自 C++ 的 c 新手