指针不是我在 C 语言中的强项。所以我可能需要你们的一点帮助:)。我想在不同的函数中使用我的文本文件,但我只能在我的 A() 函数中打开它。
#include<stdio.h>
#include<stdlib.h>
void B(){
// I want to work with FILE.TXT in this function without openining it here.
}
void A() {
FILE *fr;
fr = fopen("FILE.TXT","r");
fclose(fr);
}
int main() {
char c;
while(c!='*') {
c = getchar();
if(c=='A') A();
if(c=='B') B();
}
return 0;
}
感谢你们