stdin .cc 파일을 사용하여 .txt 파일을 읽고 이를 쉘에 출력하려면 어떻게 해야 합니까? 2부 [중복]

stdin .cc 파일을 사용하여 .txt 파일을 읽고 이를 쉘에 출력하려면 어떻게 해야 합니까? 2부 [중복]
//include file from a large library that gives us the ability to program in
//C++
#include <stdio.h>
#include <stdlib.h>

//
int main()
{
  File * fPointer;

  //fpointer gives direction to which file needs to be opened this case mytxt
  fPointer = fopen("mytext.txt","r");

  char singleLine[150];

  //feof = file end of file
  //means keep looping till end
  while(!feof(fPointer)) {

    //going to go line by line
    //
    fgets(singleLine, 150, fPointer);
   
  }

  //close the pointer or the use of this function
  fclose(fPointer);

  return(0);
}

어딘가에서 프로그램을 보고 필요에 맞게 약간 수정했습니다. 제 목표는 프로그램을 .exe로 변환한 다음 mytext.txt 파일의 내용을 표시하도록 하는 것입니다(5줄의 내용입니다). 몇 시간 동안 이 문제를 해결하려고 노력했지만 여전히 문제를 발견하지 못했습니다. 도와주세요. 저는 이 일을 잘합니다.

[저는 mobaxterm과 unix linux shell을 사용합니다(bash 파일이라고 생각합니다)]

감사합니다. 코로나19 기간 동안 건강하세요.

관련 정보