Install MinGW Program 1 Write the C program from slide 32 Pr
     Install MinGW  Program #1:  Write the C program from slide 32.  Program #2:  Write a program that prints to the screen all the ASCII characters from 33 to 126.  33!  34  Compile both programs, the TA will be looking for indentation. Comments, . and the correct output. 
  
  Solution
#include<stdio.h>
 void main()
 {
 int i;
 for(i=33;i<=126;i++)
 printf(\"%d %c\ \",i,i);
 }

