home *** CD-ROM | disk | FTP | other *** search
- /* INTRO17.C - Beispiel aus Kapitel 4 der
- Einführung */
-
- #include <stdio.h>
-
- int main()
- {
- int ascii_wert;
-
- for (ascii_wert = 32;
- ascii_wert < 256;
- ascii_wert++)
- {
- printf("\t%c", ascii_wert);
- if (ascii_wert % 9 == 0)
- printf("\n");
- }
-
- return 0;
- }
-