Untitled
unknown
c_cpp
4 years ago
189 B
30
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...
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"); }