前提・実現したいこと
if (fp = fopen(dtfile, "r") == NULL)の評価順序を教えていただきたいです。
途中過程でどのような、値が返っているのかも教えていただきたいです。
①fp = fopen(dtfile, "r")
②fopen(dtfile, "r") == NULL
③fp = fopen(dtfile, "r") == NULL
発生している問題・エラーメッセージ
プログラムを実行したら、
Debug Assertion Failed
Expressin:(stream!=NULL)
For information on how your program can cause an assertion
failure, see the Visual C++ documentation asserts.
(Press Retry to debug the application)
と表示されるエラーが発生しました。
該当のソースコード
C言語
double get_data(void) {
FILE *fp; double best; int year, month, day, h, m, s; char dtfile[] = "LACKNUM.dat"; if (fp = fopen(dtfile, "r") == NULL) { printf("本プログラムを実行するのは初めてですね。\n\n"); best = DBL_MAX; } else { fscanf(fp, "%d%d%d%d%d%d",&year,&month,&day,&h,&m,&s); fscanf(fp,"%lf",&best); printf("前回の終了は%d年%d月%d日%d時%d分%d秒でした。\n", year,month,day,h,m,s); printf("これまでの最高得点(最短所要時間)は%.1f秒です。\n\n",best); fclose(fp); } return best;
}
試したこと
事象:
1回目の実行では、fopen関数の戻り値がNULLなので、fp = fopen(dtfile, "r") == NULLの条件に入る。
2回目の実行では、1回目で"LACKNUM.dat"を作成済のため、条件文のelseに入る。
2回目に入った時に、fpにNULLが代入されたことによって、「Debug Assertion Failed」のエラーが発生した。
そこで、エラーを解消するために、以下を試すと上手くいった。
しかし、なぜこれでうまくいくのかが分からないので、教えていただきたいです。
if (fp = fopen(dtfile, "r") == NULL) をif ((fp = fopen(dtfile, "r")) == NULL)。
回答1件
あなたの回答
tips
プレビュー