2012-09-24 122 views
0

我的編譯器說:救是不宣...我宣佈它通過 「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; 
} 
+3

你錯過了','在第一行的末尾。 –

+0

爲什麼不把答案作爲答案? – Joe

+0

您不應編輯問題,以便現有答案無效。 – unwind

回答

2
FILE *save 
save = fopen ("filename.txt", "w"); 

缺少分號在這裏:

FILE *save; 
+0

哇......抱歉...我沒有注意到....謝謝! :) – JennyMelody

0

你缺少一個分號at

FILE *save 
0

第一行末尾沒有分號?

FILE *save;