From 6247bc91f619f37c06838f569182f160c1e985b6 Mon Sep 17 00:00:00 2001 From: Sofia Date: Tue, 28 Apr 2026 01:35:39 +0300 Subject: [PATCH] Add for-loop parsing --- test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test.c b/test.c index 439473d..5c5c5f8 100644 --- a/test.c +++ b/test.c @@ -51,5 +51,8 @@ int main() { twod_array[0][0] = 50; printf("2d array: %d!\n", twod_array[0][0]); + for (int counter = 0; counter < 10; counter++) + printf("counter: %d\n", counter); + return 0; } \ No newline at end of file