Untitled

Anonymous
c_cpp
03/08/2021 6:18 PM
252 B
59
Indexable
for(int i=0;i<256;i++){
    int c=0+i;
    if(c==7 || c==8 || c==9 || c==10 || c==11 || c==12 || c==13) printf("      ");
    else printf("%d = %c ",c,c);
    if(i%8==7)printf("\n");
}
Editor is loading...