fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. int age = 21;
  6. float height = 5.8;
  7.  
  8. printf("Age = %d\n", age);
  9. printf("Height = %.1f\n", height);
  10.  
  11. return 0;
  12. }
  13.  
  14.  
  15.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Age = 21
Height = 5.8