|
|
@ -14,4 +14,6 @@ int main() |
|
|
|
printf("Name: %s\n", person.name); |
|
|
|
printf("Name: %s\n", person.name); |
|
|
|
printf("Age: %d\n", person.age); |
|
|
|
printf("Age: %d\n", person.age); |
|
|
|
printf("Height: %.2f\n", person.height); |
|
|
|
printf("Height: %.2f\n", person.height); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
} |
|
|
|
} |
|
|
|