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.
私はプログラミングに非常に慣れていないので、このばかげた質問を許してください。ExcelでCSVファイルにアクセスしたいのですが、ファイルの行数の数え方がわかりません。feof() を使用する必要がありますか?
*FILE *data; int count; data = fopen("test.csv", "r"); while( feof(data) == 0 ) { count++; } printf("%d", count);*