开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
OS X
Xcode
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
只有stdio.h
问题(Question):
使用资料存取的档案时,找不到档案到底存在哪
喂入的资料(Input):
none
预期的正确结果(Expected Output):
恩...是生出一个叫oldname.txt的档案吧
错误结果(Wrong Output):
找不到档案
程式码(Code):(请善用置底文网页, 记得排版)
#include <stdio.h>
int main(void)
{
unsigned int account;
char name[30];
double balance;
FILE *cfPtr;
if ((cfPtr = fopen("oldname.txt", "w"))==NULL) {
puts("File could not be opened");
}
else {
puts("Enter the account, name, and balance.");
puts("Enter EOF to end input");
scanf("%d%29s%lf",&account, name, &balance);
while(!feof(stdin)){
fprintf(cfPtr,"%d %s %.2f\n",&account,name,&balance);
scanf("%d%29s%lf",&account,name,&balance);
}
}
return 0;
}
补充说明(Supplement):