From b7634278fad3ce98545cb6925373b9614d5e7b31 Mon Sep 17 00:00:00 2001 From: JanRodriguez01 Date: Thu, 21 Aug 2025 13:51:57 -0400 Subject: [PATCH] Update main.c I change the text to "Hello, School" and change it to 32 instead of 10 --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index a9a0bdb3..569a92cf 100644 --- a/main.c +++ b/main.c @@ -1,9 +1,9 @@ int main() { int i; - for (i = 0; i < 10; i++) + for (i = 0; i < 32; i++) { - printf("School\n"); + printf("Hello, School\n"); } return 0; }