Printing a string without printf

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Printing a string without printf - strona 1

Fragment notatki:

Printing a str ing without printf #include int main() { char s[] = "Hello again!\n"; char *p; p = s; while (*p) /* smart? */ putchar (*p++); return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz