fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int age = 19;
  6. int high = 177;
  7. int weight = 70;
  8. printf("age = %\d,high = %\d,weight = %d",age,high,weight);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
age = 19,high = 177,weight = 70