fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int m=5;
  6. printf("m/2%d\n",m/2);
  7. printf("(float)(m/2)=%f\n",(float)(m/2));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
m/22
(float)(m/2)=2.000000