mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-22 08:53:01 +02:00
feat(topic): add content to control flow in cpp roadmap (#8480)
* added content to if-else/switch/goto under control flow & statements inside c++ roadmap * added content to if-else/switch/goto under control flow & statements inside c++ roadmap * added content to control flow in cpp roadmap fixed format error * chore: update roadmap content json
This commit is contained in:
@@ -141,8 +141,24 @@
|
|||||||
},
|
},
|
||||||
"bjpFWxiCKGz28E-ukhZBp": {
|
"bjpFWxiCKGz28E-ukhZBp": {
|
||||||
"title": "if else / switch / goto",
|
"title": "if else / switch / goto",
|
||||||
"description": "",
|
"description": "C++ provides you with tools which helps you to control the way your program behaves (logic flows) based on how the user interact with your program. Here we will discuss about `if-else`, `switch` and `goto` are three common ways to guide the flow of logic in your code.\n\nVisit the following resources to learn more:",
|
||||||
"links": []
|
"links": [
|
||||||
|
{
|
||||||
|
"title": "The 'if-else' Statement in C++",
|
||||||
|
"url": "https://www.youtube.com/watch?v=9-BjXs1vMSc",
|
||||||
|
"type": "video"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Learn C++ With Me - Switch Statement",
|
||||||
|
"url": "https://www.youtube.com/watch?v=uOlLs1OYSSI",
|
||||||
|
"type": "video"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Why is it illegal to use \"goto\"?",
|
||||||
|
"url": "https://youtu.be/AKJhThyTmQw?si=gjEqAsDZVMDGVAT2",
|
||||||
|
"type": "video"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"oYi3YOc1GC2Nfp71VOkJt": {
|
"oYi3YOc1GC2Nfp71VOkJt": {
|
||||||
"title": "Functions",
|
"title": "Functions",
|
||||||
|
@@ -1 +1,9 @@
|
|||||||
# if else / switch / goto
|
# If-Else / Switch / Goto
|
||||||
|
|
||||||
|
C++ provides you with tools which helps you to control the way your program behaves (logic flows) based on how the user interact with your program. Here we will discuss about `if-else`, `switch` and `goto` are three common ways to guide the flow of logic in your code.
|
||||||
|
|
||||||
|
Visit the following resources to learn more:
|
||||||
|
|
||||||
|
- [@video@The 'if-else' Statement in C++](https://www.youtube.com/watch?v=9-BjXs1vMSc)
|
||||||
|
- [@video@Learn C++ With Me - Switch Statement](https://www.youtube.com/watch?v=uOlLs1OYSSI)
|
||||||
|
- [@video@Why is it illegal to use "goto"?](https://youtu.be/AKJhThyTmQw?si=gjEqAsDZVMDGVAT2)
|
Reference in New Issue
Block a user