From 0fb63ee7038320e4665ce6060a2c63776a30fb8a Mon Sep 17 00:00:00 2001 From: Sofia Date: Tue, 28 Apr 2026 16:19:53 +0300 Subject: [PATCH] Update test.c --- test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.c b/test.c index 2341b71..bdc0217 100644 --- a/test.c +++ b/test.c @@ -52,11 +52,11 @@ int main() { printf("2d array: %d!\n", twod_array[0][0]); for (int counter = 0; counter < 10; counter++) - printf("counter: %d\n", counter); + printf("for-counter: %d\n", counter); int counter = 0; while (counter < 10) - printf("counter: %d\n", counter++); + printf("while-counter: %d\n", counter++); return 0; } \ No newline at end of file