fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4.  
  5.  
  6. #define LETTER '1'
  7. #define ZERO 0
  8. #define NUMBER 123
  9.  
  10. printf("%c", 'a');
  11.  
  12. printf("x$x", 12288);
  13.  
  14. printf("$%d. %c%d\n", NUMBER, LETTER, ZERO);
  15. }
Success #stdin #stdout 0s 5288KB
stdin
stdout
ax$x$123. 10