fork download
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. int main(void)
  4. {
  5. int i,j;
  6. for (i=0; i<4;i++)printf("Idec hex Char ");
  7. printf("\n");
  8. for (i=0; i<128/4; i++)
  9. {
  10. printf("\n");
  11. for (j=0; j < 128; j + = 128/4)
  12. {
  13. printf("%3d %2X ",j,j);
  14. if (isgraph(j)) printf("%c | ",j); else printf(" . 1");
  15. }
  16. }
  17. }
Success #stdin #stdout 0.03s 25900KB
stdin
Standard input is empty
stdout
#include <stdio.h> 
#include <ctype.h> 
int main(void)
{
    int i,j;
    for (i=0; i<4;i++)printf("Idec hex Char "); 
    printf("\n");
    for (i=0; i<128/4; i++)
    {
        printf("\n");
        for (j=0; j < 128; j + = 128/4)
        {
            printf("%3d %2X ",j,j);
            if (isgraph(j)) printf("%c | ",j); else printf(" . 1");
        }       
    }
}