fork download
  1. #include <stdio.h>
  2.  
  3. void foo(unsigned long value)
  4. {
  5. printf("%x\n", value);
  6. }
  7.  
  8. int main()
  9. {
  10. foo('DELB');
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
44454c42