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.
fscanf を使用して、数値のリストであるファイルから読み取りたいと思います (長さは任意です)。
42 20 8 5 0
ただし、このような任意の数の値を読み取るフォーマット文字列を作成する方法がわかりません。
これを試して
while(fscanf(fp,"%d",&number) == 1) { printf("%d",number); }
fscanf読み込まれたアイテムの数を返し、ファイルの終わりに EOF を返します
fscanf