河南成教 / C 语言程序设计
[程序题]
编程:将数字66以字符的形式写到磁盘文件中。部分程序如下:
#include
void main()
{ FILE *fp;
int i=66;
if((fp=fopen("d:\C\file2.txt","w"))==NULL)
{ printf("不能打开文件");
getch();
exit(1);
}
( )
fclose(fp);
}
[程序题]
编程:将数字66以字符的形式写到磁盘文件中。部分程序如下:
#include
void main()
{ FILE *fp;
int i=66;
if((fp=fopen("d:\C\file2.txt","w"))==NULL)
{ printf("不能打开文件");
getch();
exit(1);
}
( )
fclose(fp);
}
参考答案:
佳题速递: