/* 
 * Author:     Wil Schrader
 * Date:       9/8/2009
 * Version:    1.1
 * Class:      CIT 131 / Fall 2009 
 *
 * Assignment: 1) ASCII Table
 *                Print out every character in the exctended
 *                ASCII character set in the range 33-126.
 */
#include <stdio.h>

/* Main Function */
int main( void )
{
   int i;

   /* Loop from 33 to 126, outputting the ASCII number and value */
   for ( i = 33 ; i <= 126 ; i++ ) {
      printf( "%d: %c", i, i );

      if ( (i-32) % 7 == 0 )
         printf( "\n" );
      else
         printf( "\t" );

   } /* End For Loop */

   return 0; /* Program ended successfully */

} /* End Main Function */
