home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tcpp / examples / intro17.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-10  |  325 b   |  21 lines

  1. /* INTRO17.C - Beispiel aus Kapitel 4 der
  2.                Einführung */
  3.  
  4. #include <stdio.h>
  5.  
  6. int main()
  7. {
  8.    int ascii_wert;
  9.  
  10.    for (ascii_wert = 32;
  11.         ascii_wert < 256;
  12.     ascii_wert++)
  13.    {
  14.       printf("\t%c", ascii_wert);
  15.       if (ascii_wert % 9 == 0)
  16.          printf("\n");
  17.    }
  18.  
  19.    return 0;
  20. }
  21.