//写入a,b,c到文件中 fclose(fp); fp = NULL; //需要指向空,否则会指向原打开文件地址 return 0; } 1. 2. 3. 4. 上面是用C语言写内容到文件中去,下面是从文件中读取: #include <stdio.h> int main(void) { FILE *fp = NULL; char line[1000]; if((fp = fopen("test.csv","at+")) ...
void csvdata(FILE*,int); int main(void){ FILE* fp; char n; printf("请输入要截取的数据数:\n",&n); scanf("%d",&n); csvdata(fp,n); } void csvdata(FILE* fp,int n){ fp = fopen("data.csv","r"); char s[5][3][20]; for(int i = 0;i < 5;i++){ for(int j = ...