fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int z;
  6. int i = 4;
  7. int x = 6;
  8. z = x / i;
  9. printf("z=%.2f\n", z);
  10. return 0;
  11. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
z=0.00