79739507

Date: 2025-08-19 06:15:23
Score: 1
Natty:
Report link

You can't print the values from 1 to 31 is that they are non printable characters, for example NUL, SOH, BS.
Here is a ASCII chart for your reference ASCII Chart for C
Use this for loop

for( int i = 32; i<127; i++){
        printf("%c ", i);

This prints all the printable ASCII character separated by space.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: benga_kai