fork(3) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float c;
  6. float a=2,b=3;
  7. c=b/a;
  8. printf("%f", c);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5292KB
stdin
1234
98765
stdout
1.500000