File copying

Nasza ocena:

3
Pobrań: 14
Wyświetleń: 1127
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
File copying - strona 1

Fragment notatki:

File copying #include /* copy input to output; 1st version */ int main() { int c; c = getchar(); while (c != EOF) { putchar(c); c = getchar(); } return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz