fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. void p (int end) { printf(end?"\n":" "); }
  5. void pi (long long n) { printf("%lld",n); }
  6. void pu (unsigned long long n) { printf("%llu",n); }
  7. void pf (double n) { printf("%g",n); }
  8. void pc (char n) { printf("%c",n); }
  9. void ps (char* n) { printf("%s",n); }
  10.  
  11. int main (void)
  12. {
  13. pi(999),p(0),pf(3.16),p(0),ps("test"),p(1);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
999 3.16 test