fork(1) download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. // your code goes here
  5. int age=18;
  6. int height =161.8;
  7. int weight = 42;
  8. printf("age= %d,height =%f,weight=%d",age,height,weight);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
age= 18,height =0.000000,weight=161