c中的文件指针可不可以通过某个函数指定到某行某列
代码如下:#include "stdio.h"
#include "stdlib.h"
int main()
{
FILE *fp;
char ch;
int i;
if((fp=fopen("temp.txt","r+w"))==NULL)
{
printf("file cannot be opened\n");
exit(1);
}
ch='0';
fseek(fp,9l,SEEK_SET);
fputc(ch,fp);
return 1;
}
我只会这个
若temp文件中的数据为
1 1 1 1
1 1 1 1
1 1 1 1
想通过什么函数将文件指针直接放到象缓存数组那样
确定到某行某列