fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char buf[4] = { 255, 255, 255, 255 };
  5. snprintf(buf, sizeof buf, "flabber");
  6. printf("Got %02x %02x %02x %02x\n", buf[0] & 255, buf[1] & 255, buf[2] & 255, buf[3] & 255);
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Got 66 6c 61 00