fork download
  1. #include <stdio.h>
  2. float main ()
  3. {
  4. /* variable definition: */
  5. float a, b, c;
  6.  
  7. /* variable initialization */
  8. a = 5;
  9. b = 10;
  10. c = a/b;
  11. printf("Float (a,b) and quotient (c) are : %f,%f,%f \n", a,b,c);
  12. return 0;
  13. }
  14.  
  15.  
Runtime error #stdin #stdout 0s 4252KB
stdin
Standard input is empty
stdout
Float (a,b) and quotient (c) are : 5.000000,10.000000,0.500000