From b65491612f472a8ee709ee697518d6bfece547b7 Mon Sep 17 00:00:00 2001 From: Peace Date: Thu, 24 Apr 2025 11:19:38 +0900 Subject: [PATCH] struct --- basic/6_struct.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/basic/6_struct.c b/basic/6_struct.c index 43785e7..29ec23d 100644 --- a/basic/6_struct.c +++ b/basic/6_struct.c @@ -14,4 +14,6 @@ int main() printf("Name: %s\n", person.name); printf("Age: %d\n", person.age); printf("Height: %.2f\n", person.height); + + return 0; }