fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=1, b=6;
  5. double c;
  6.  
  7. printf("c = %1.23 \n", c=a/b);
  8.  
  9.  
  10.  
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4468KB
stdin
Standard input is empty
stdout
c = %1.23