fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int z = 4;
  6. float b = 5.4;
  7.  
  8. printf("%d %f\n", z, b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
4 5.400000