home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / INTRO20.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  292b  |  18 lines

  1. // INTRO20.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.    int ascii_val;
  8.  
  9.     for (ascii_val = 32; ascii_val < 256; ascii_val++)
  10.     {
  11.         cout << '\t' << (char)ascii_val;
  12.         if (ascii_val % 9 == 0)
  13.             cout << '\n';
  14.    }
  15.  
  16.    return 0;
  17. }
  18.