From 53032e38c7bfb663615eb6dfdb104ae865850d72 Mon Sep 17 00:00:00 2001 From: arjundixit98 <36246420+arjundixit98@users.noreply.github.com> Date: Tue, 6 Nov 2018 19:16:07 +0530 Subject: [PATCH] Adding lines of text (#25079) --- guide/english/cplusplus/for-loop/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/cplusplus/for-loop/index.md b/guide/english/cplusplus/for-loop/index.md index 9390fbc8bc..c92cedde46 100644 --- a/guide/english/cplusplus/for-loop/index.md +++ b/guide/english/cplusplus/for-loop/index.md @@ -8,6 +8,8 @@ The for loop is distinguished from other looping statements through an explicit Hence a for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times. +For loop is an entry controlled loop unlike do-while loop. + ## Syntax ```