You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
void main() {
|
|
printf("const char* symbols[] = {\n");
|
|
for(int c = 32; c < 127; c++) {
|
|
printf(" // %d \"%c\"\n", c, c);
|
|
for(int j=0;j<5;j++){
|
|
printf(" \" \",\n");
|
|
}
|
|
}
|
|
printf("};\n");
|
|
}
|
|
|