fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char byte = 65;
  6. unsigned short height = 1055;
  7. int distance = 1000000;
  8. float pi = 3.1415f;
  9.  
  10. printf("%c/n", byte);
  11. printf("%u/n", height);
  12. printf("%d/n", distance);
  13. printf("%f", pi);
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
A/n1055/n1000000/n3.141500