開發平台(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):