fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int v[4] = {0x0A, 0xBB, 0x4B, 0x18};
  5. for (int i = 0; i < 4; i++) printf("%02X", v[i]);
  6. }
  7.  
  8. //https://pt.stackoverflow.com/q/51965/101
Success #stdin #stdout 0s 4504KB
stdin
Standard input is empty
stdout
0ABB4B18