Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコンパイラは言う:保存は宣言されていません...私はそれを「FILE *save」で宣言しました
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;
にセミコロンがありません
FILE *save
最初の行の末尾にセミコロンがありませんか?
がありません;:
;
FILE *save ; ^