1 #include 2 3 int main(){ 4 for(char i = 0; i < 127; i++) 5 printf("%c", i); 6 puts(""); 7 return 0; 8 }