fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. FILE *fp;
  5. char filename[] = "A16.0.csv"; // 確認したいファイル名
  6. char line[256]; // 1行分のデータを格納するバッファ
  7.  
  8. // ファイルを開く
  9. if ((fp = fopen(filename, "r")) != NULL) {
  10. printf("File '%s' opened successfully. Contents:\n", filename);
  11. // ファイルの内容を1行ずつ読み取って表示
  12. while (fgets(line, sizeof(line), fp) != NULL) {
  13. printf("%s", line); // 1行を表示
  14. }
  15. fclose(fp); // ファイルを閉じる
  16. } else {
  17. perror("File Open Error"); // エラー内容を表示
  18. }
  19.  
  20. return 0;
  21. }
Success #stdin #stdout #stderr 0s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
File Open Error: No such file or directory