fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. char a = '\012';
  4. char b = '\08';
  5. char c = '012';
  6. char d = '\0x12';
  7. printf("%d %d %d %d", a, b, c, d);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
10 56 50 50