Character counting - examples

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Character counting - examples - strona 1

Fragment notatki:

Character counting #include /* count characters in input; 1st version */ int main() { long nc; /* used as a counter */ nc = 0; while (getchar() != EOF) nc++; printf("%ld\n", nc); return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz