fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char bytes[2] = { 0x12, 0xab };
  5. printf("%x, %x\n", bytes[0], bytes[1]);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
12, ffffffab