fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int age = 56;
  5. float height = 1.88;
  6. char initial = 'H';
  7. char name[20] = "Harry";
  8.  
  9. printf("Age: %d\n", age);
  10. printf("Height: %.1f\n", height);
  11. printf("Initial: %c\n", initial);
  12. printf("Name: %s\n", name);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
Age: 56
Height: 1.9
Initial: H
Name: Harry