#include <stdio.h>
#include <unistd.h>

int main() {
    char num_char[1];
    num_char[0] = ' ';  // Starting character (ASCII 32)

    while(num_char[0] < 256) {
        write(1, &num_char[0], 1);
        num_char[0]++;
        write(1, "\n", 1);
    }

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: