Line counting - overview

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Line counting  - overview - strona 1

Fragment notatki:

Line counting #include /* count lines in input */ int main() { int c, nl; nl = 0; /* the number of lines so far */ while ((c = getchar()) != EOF) if (c == '\n') /* new line found */ nl++; printf("%d\n", nl); return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz