Skip to content

Commit 66c0372

Browse files
committed
cpp-docs-sec-3-4-added
1 parent a928219 commit 66c0372

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/cpp/03_Control_Flow/01_Conditional_Statements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tags:
1717
description: In this tutorial, we will learn about conditional statements in the C++ programming language. We will explore the syntax and usage of `if`, `else if`, and `else` statements, as well as switch-case structures. By understanding how to implement these conditional statements, you will be able to control the flow of your C++ programs and make decisions based on different conditions.
1818
---
1919

20-
# Conditional Statements in C++
20+
# Conditional Statements
2121

2222
## Introduction
2323

docs/cpp/03_Control_Flow/02_Loops_in_Cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tags:
1616
description: In this tutorial, we will learn about loops in the C++ programming language. We will explore the syntax and usage of `for`, `while`, and `do-while` loops. By understanding how to implement these looping constructs, you will be able to execute code repeatedly based on specified conditions, making your C++ programs more efficient and powerful.
1717
---
1818

19-
# Loops in C++
19+
# Loops in CPP
2020

2121
## Introduction
2222

docs/cpp/03_Control_Flow/03_Switch_Case_Statements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tags:
1616
description: In this tutorial, we will learn about switch case statements in the C++ programming language. We will explore the syntax and usage of the switch statement and how to handle multiple cases. By understanding how to implement switch case statements, you will be able to simplify complex conditional logic and improve the readability of your C++ programs.
1717
---
1818

19-
# Switch and Ternary Statements in C++
19+
# Switch and Ternary Statements
2020

2121
## Introduction
2222

docs/cpp/04_Functions/01_Function_Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tags:
1414
description: In this tutorial, we will learn about the basics of functions in the C++ programming language. We will explore the syntax for defining and calling functions, the concept of return types, and the use of parameters. By understanding how to create and utilize functions, you will be able to organize your code more effectively and improve its modularity and reusability.
1515
---
1616

17-
# Functions in C++
17+
# Functions
1818

1919
## Introduction
2020

docs/cpp/04_Functions/03_Function_Overloading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tags:
1515
description: In this tutorial, we will explore the concept of function overloading in the C++ programming language. We'll delve into how to define multiple functions with the same name but different parameter lists. By understanding function overloading, you'll learn how to write cleaner, more concise code and enhance the flexibility and readability of your C++ programs.
1616
---
1717

18-
# Function Overloading in C++
18+
# Function Overloading
1919

2020
Function overloading in C++ allows you to have multiple functions with the same name but different parameters. This enables you to create more flexible and reusable code by providing different ways to handle inputs based on their types or number.
2121

0 commit comments

Comments
 (0)