From 087b9287ae641f317b63746d1ac3167c1ee7aaf9 Mon Sep 17 00:00:00 2001 From: nihalxkumar <121309701+nihalxkumar@users.noreply.github.com> Date: Thu, 7 Mar 2024 18:36:32 +0530 Subject: [PATCH] typo --- src/Learning-C/Control_Statements_Loops.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Learning-C/Control_Statements_Loops.md b/src/Learning-C/Control_Statements_Loops.md index b3d382c..9f7ce60 100644 --- a/src/Learning-C/Control_Statements_Loops.md +++ b/src/Learning-C/Control_Statements_Loops.md @@ -40,6 +40,7 @@ Any or all of the initialization, condition, and update statements can be omitte for (initialization; condition; update) { // code to be executed } +``` ```C #include