fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. int i;
  6. unsigned char test[100] = "01234567891011121314";
  7.  
  8. int length = strlen(test);
  9.  
  10. for(i = 0; i < length; i++){
  11. printf("%x ", test[i]);
  12. }
  13.  
  14. printf("\n");
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
30 31 32 33 34 35 36 37 38 39 ef bc 91 ef bc 90 ef bc 91 ef bc 91 ef bc 91 ef bc 92 ef bc 91 ef bc 93 ef bc 91 ef bc 94