fork download
  1. #include "stdio.h"
  2. int main()
  3. {
  4. int x,y;
  5. x = 5;
  6. y = 6;
  7. printf("%d\n",x);
  8. printf("%c\n",x);
  9. printf("%d %d\n",x,y);
  10. printf("%d\n",125);
  11. printf("%c\n",125);
  12. printf("The total $ %6.2f\n",12.5);
  13. printf("The total $ %6.3f\n",12.5);
  14. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
5

5 6
125
}
The total $  12.50
The total $ 12.500