ASCII table
Make a program that writes a table of all characters with values from 32 to 255.
Example:
| value | character |
| 62 | > |
| 63 | ? |
| 64 | @ |
| 65 | A |
| 66 | B |
| and so on... | |
Hint: if you output a variable of type char you will get the corresponging character on the screen. If you output a variable of type int you will get the value as a number on the screen.