Solution of Line buffered input

Nasza ocena:

3
Wyświetleń: 294
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Solution of Line buffered input - strona 1 Solution of Line buffered input - strona 2

Fragment notatki:

Solution  Simple method: read and dump all the characters from the input buffer until a '\n' after the scanf() call: void dump_line( FILE * fp ) { int ch; while( (ch = fgetc(fp)) != EOF && ch != '\n' ) /* null body */ ; } Modified code int x; char st[31]; printf("Enter an integer: "); scanf("%d", &x); dump_line(stdin); /* ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz