-1
今日私はlinux mintのCでテキストファイルを使用しようとしていますが、動作していません(テキストは表示されません)。それを解決するために私を助けてください。テキストファイルを使用していますが動作していません
#include <stdio.h>
#include <stdlib.h>
int main()
{
int account;
char name[30];
float balance;
FILE *fp;
if((fp = fopen("tin", "w")) == NULL) {
printf("File could not be opened\n");
exit(1);
}
else {
printf("Enter the account, name, and balance.\n");
printf("Enter EOF to end input.\n");
printf("?");
scanf("%d%s%f", &account, name, &balance);
while(!feof(stdin)) {
fprintf(fp, "%d %s %2.f\n", account, name, balance);
printf("?");
scanf("%d%s%f", &account, name, &balance);
}
fclose(fp);
}
return 0;
}
私は私の端末でこのコードを実行すると、私は
はどうもありがとうございまし得ます。
入力を表示します。 – BLUEPIXY
ご迷惑をおかけして申し訳ありません。 –
あなたが直面している正確なエラーを共有することができれば、それは良いでしょう、そのコンパイルかランタイムエラー –