home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day14 / putchar.c < prev    next >
C/C++ Source or Header  |  2002-05-07  |  172b  |  14 lines

  1. /* Demonstrates putchar(). */
  2.  
  3. #include <stdio.h>
  4. int main( void )
  5. {
  6.   int count;
  7.  
  8.   for (count = 14; count < 128; )
  9.         putchar(count++);
  10.  
  11.   return 0;
  12. }
  13.  
  14.