fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. for(int idx=0; idx <= 0x7f; idx++) {
  5. if ((idx ^ 0x20) < 0x20) {
  6. printf("0x%x\t", idx);
  7. }
  8. }
  9. printf("\n");
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
0x20	0x21	0x22	0x23	0x24	0x25	0x26	0x27	0x28	0x29	0x2a	0x2b	0x2c	0x2d	0x2e	0x2f	0x30	0x31	0x32	0x33	0x34	0x35	0x36	0x37	0x38	0x39	0x3a	0x3b	0x3c	0x3d	0x3e	0x3f