From 32967484da9a5a7937db2a5626d76eb0fed70597 Mon Sep 17 00:00:00 2001 From: HatoJey <156991617+HatoJey@users.noreply.github.com> Date: Thu, 25 Jan 2024 00:32:56 -0400 Subject: [PATCH] Master Branch --- main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index a9a0bdb3..5694dca6 100644 --- a/main.c +++ b/main.c @@ -1,9 +1,10 @@ int main() { int i; - for (i = 0; i < 10; i++) + for (i = 0; i < 32; i++) // I changed the loop limit to 32 { - printf("School\n"); + printf("Hello, School\n"); // I changed the output message } return 0; } +```