[완료] FIle에서 한 줄씩 읽어내서 인쇄하려고 합니다...

hyper9의 이미지

원본 File은요 ~

abcde 11111 xx
efghijk 22222 xxxxyy
lmnop 33333 xxxzz
qrs 44444 xxxzz

라는 file이고요, 이 file을 읽어서 한line씩 print하려고 했는데요,,

FILE *fp;
char line[20][80];

fp = fopen("./modules", "r");
if (fp == NULL) return;

memset(line, 0, sizeof(line));
while(!feof(fp))
{
fgets(line[i], 80, fp);
if(i == 0)
p = line[i];
printf("%d %s", i, line[i]);
i++;
}

fclose(fp);

항상 아래와 같이 출력되면서 마지막에 4자가 한번 더 찍히는데
이걸 없애고 4줄만 딱 찍으려면 어떻게 하는게 좋을까요?

0 abcde 11111 xx
1 efghijk 22222 xxxxyy
2 lmnop 33333 xxxzz
3 qrs 44444 xxxzz
4 $

그리고 요 다음엔 이렇게 한줄씩 출력하는 것이 아니고 한줄마다
첫단어만 추려내려고 하는데,,그럴땐 어떻게 하는게 좋을지
많은 답변 부탁드립니다. ^^

legendsm의 이미지

EOF까지 읽는거니깐 빈줄이 있어도 읽어서 줄력되는겁니다.
strlen 해서 1이고 그 1문자가 \n 이나 다른 빈 문자 기호일경우 예외처리해주시면 되겠네요

첫 단어만 추출하시는 경우는

만약 파일 포멧이 저위와 동일할경우
scanf("%s %s %s" ... ); 식으로 받을수도 있고
strtok, strtok_r(thread safe 함수) 이용해서 각 문자열을 짤라서 쓰셔도 되겠지요

-_-)/ Gloomynightmare

-_-)/ Gloomynightmare

bushi의 이미지

feof() 는 현재 fd 의 상태가 아니라 바로 이전 operation 에 대한 결과를 돌려줍니다.

  do {
     p = fgets(...);
     if (!p || feof(...))
         break;
     printf(...);
  } while (1);

operation 을 하기 전에 검사하기 위한 용도가 아니라,
operation 후 에러가 발생했을 때, 이 에러가 EOF 인지 아닌지 판별하기 위한 용도로 사용하세요.

OTL

doldori의 이미지

그렇습니다.
그런데 이 코드를 보면 short circuit에 의해 fgets()가 성공할 때
feof()가 호출되므로 전혀 필요가 없다는 것을 알 수 있습니다.
따라서 이 경우 다음과 같은 방법으로 충분합니다.

while (fgets(...))
   printf(...);

hyper9의 이미지

덕분에 Code가 잘 정리되었습니다. ^^

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.