c언어 파일 내용 출력하기
프로그래밍/C, C++2021. 2. 19. 08:41
반응형
# cat test.txt
aaa
bbb
ccc
# vi test.c
#pragma warning(disable :4996) #define MAX_LEN 100 #include <stdio.h> int main() { FILE* fs; fs = fopen("test.txt", "r"); while (feof(fs) == 0) { char str[MAX_LEN]; fgets(str, MAX_LEN, fs); printf("%s", str); } } |
# gcc test.c -o test
# ./test
aaa
bbb
ccc
반응형
'프로그래밍 > C, C++' 카테고리의 다른 글
c언어 string 문자형을 int 형으로 변환하기 (0) | 2021.02.24 |
---|---|
c언어 변수 내용 비우기 (문자열 초기화) (0) | 2021.02.24 |
c언어 문자열에서 숫자만 가져와서 출력하기 (0) | 2021.02.18 |
c언어 소켓 close 할때 TIME_WAIT 상태로 남아 있는 경우 (0) | 2021.02.16 |
c언어 서버 소켓 종료 후 바로 재사용하기 (bind 실행 에러시) (0) | 2021.02.16 |
댓글()