我的編譯器說:救是不宣...我宣佈它通過 「FILE *拯救」我的錯誤是什麼?
FILE *save
save = fopen ("filename.txt", "w");
while (current != NULL)
{
fprintf (save, " %s %s %d", current -> name, current -> tel, current -> age);
current = current -> next;
}
我的編譯器說:救是不宣...我宣佈它通過 「FILE *拯救」我的錯誤是什麼?
FILE *save
save = fopen ("filename.txt", "w");
while (current != NULL)
{
fprintf (save, " %s %s %d", current -> name, current -> tel, current -> age);
current = current -> next;
}
FILE *save
save = fopen ("filename.txt", "w");
缺少分號在這裏:
FILE *save;
哇......抱歉...我沒有注意到....謝謝! :) – JennyMelody
你缺少一個分號at
FILE *save
第一行末尾沒有分號?
FILE *save;
您有失蹤;
:
FILE *save ;
^
你錯過了','在第一行的末尾。 –
爲什麼不把答案作爲答案? – Joe
您不應編輯問題,以便現有答案無效。 – unwind