From 542cf6a68f8e49315db9eaac4ca935b959effd7f Mon Sep 17 00:00:00 2001 From: toakes59 <31904863+toakes59@users.noreply.github.com> Date: Sun, 17 Mar 2019 13:22:43 -0400 Subject: [PATCH] added For Loop heading (#30382) Added For Loop heading to top of page. This is easier to see then the title table --- 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 e653bda0cb..d2c12bafd5 100644 --- a/guide/english/cplusplus/for-loop/index.md +++ b/guide/english/cplusplus/for-loop/index.md @@ -2,6 +2,8 @@ title: For Loop --- +# For Loop + A `for` loop is a repetitive statement that is used to check for some condition and then, based upon the condition a block of code, is executed repeatedly until the specified condition is satisfied. The `for` loop is distinguished from other looping statements through an explicit loop counter or loop variable which allows the body of the loop to know the exact sequencing of each iteration.