#使用vc6编译环境
文件打开 fopen("C:\\exam.dat","ab+");
a:append 追加
if((fp=fopen("c:\\hzk16","rb")==NULL)
{
printf("\nerror on open c:\\hzk16 file!"); //include
getch(); //include
exit(1); //include
}
文件关闭 fclose(文件指针)
如果正常关闭,返回0,返回非零表示有错误发生。
字符读写函数 :fgetc和fputc
字符串读写函数:fgets和fputs
数据块读写函数:freed和fwrite
格式化读写函数:fscanf和fprinf
FILE *fp = stdout 表示文件指针对应标准输出文件(显示器)。