fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. void
  5. something(uint8_t* var)
  6. {
  7. printf("%02X\n", var);
  8. }
  9.  
  10. int main() {
  11. something(0xFF);
  12. return 0;
  13. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
FF