From f1a37deab20a31d334f700ed6acb15b4398b1501 Mon Sep 17 00:00:00 2001 From: roadmap bot <135830415+roadmap-bot@users.noreply.github.com> Date: Wed, 5 Jul 2023 22:10:16 +0100 Subject: [PATCH] chore: add resource under cpp:basic-operations:loops --- .../roadmaps/cpp/content/102-basic-operations/102-loops.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/102-basic-operations/102-loops.md b/src/data/roadmaps/cpp/content/102-basic-operations/102-loops.md index 729246627..6e0e1489a 100644 --- a/src/data/roadmaps/cpp/content/102-basic-operations/102-loops.md +++ b/src/data/roadmaps/cpp/content/102-basic-operations/102-loops.md @@ -84,4 +84,6 @@ int main() { } ``` -In summary, loops are an integral part of C++ programming that allow you to execute a block of code multiple times. The three types of loops in C++ are `for`, `while`, and `do-while`. Each type has its own specific use case and can be chosen depending on the desired behavior. \ No newline at end of file +In summary, loops are an integral part of C++ programming that allow you to execute a block of code multiple times. The three types of loops in C++ are `for`, `while`, and `do-while`. Each type has its own specific use case and can be chosen depending on the desired behavior. + +- [C++ For Loop](https://www.w3schools.com/cpp/cpp_for_loop.asp) \ No newline at end of file