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; } +```