ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: "Dmitry V. Levin" <ldv@altlinux.org>
To: ALT Linux general discussion list <community@altlinux.ru>
Subject: Re: [Comm] [BUG] feof() и дублирование последней строки
Date: Tue, 7 Jun 2005 17:59:46 +0400
Message-ID: <20050607135946.GA6382@basalt.office.altlinux.org> (raw)
In-Reply-To: <20050607133736.GA4274@mycomp.mydomain>

[-- Attachment #1: Type: text/plain, Size: 1214 bytes --]

On Tue, Jun 07, 2005 at 08:37:36PM +0700, php-coder wrote:
>     Вот заметил тут, что простейший примерчик на Сях работает очень
>     странно, и даже, прямо таки скажем, неожиданно. Дело в том, что
>     считывается лишняя строчка, т.е. последння строка файла по неведомой
>     мне причине считывается дважды.
> 
>     [c0der@mycomp ~]$ cat test.c
>     #include <stdio.h>
>     int main()
>     {
>      char str[100];
>      FILE *fd;
> 
>      fd = fopen("test.txt", "r");
>         
>      while(! (feof(fd))) {
>        fscanf(fd, "%s", str);
>        printf("%s\n", str);
>      }
>      fclose(fd);
> 
>      return 0;
>     }
> 
>     [c0der@mycomp ~]$ cat test.txt
>     1
>     2
>     3
>     [c0der@mycomp ~]$ ./test
>     1
>     2
>     3
>     3
>                  
>     Объясните что происходит, пожалуйста.. :-)

Происходит непонимание стандартной библиотеки языка C.
Вы сначала проверяете состояние потока, а потом читаете из потока и
используете якобы прочитанное без проверки результата операции чтения.

Для прояснения картины добавьте memset(str,0,sizeof str) перед вызовом fscanf().
И вообще, не используйте fscanf() таким образом.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

      parent reply	other threads:[~2005-06-07 13:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-06-07 13:37 php-coder
2005-06-07 13:55 ` [Comm] [BUG] feof() Х ДСАКХПНБЮМХЕ ОНЯКЕДМЕИ ЯРПНЙХ Alexey Rusakov
2005-06-07 13:59 ` Dmitry V. Levin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050607135946.GA6382@basalt.office.altlinux.org \
    --to=ldv@altlinux.org \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git