diff --git a/readme.md b/readme.md index 39e6a0bc..6da36b77 100644 --- a/readme.md +++ b/readme.md @@ -123,14 +123,13 @@ Non-primitive data types are also known as reference data types. They are create - [Function](Data%20Types/readme.md#function) - [Class](Data%20Types/readme.md#class) -## [Statements and Functions](Functions%20and%20Statements/readme.md) +## [Statements and Functions](Statements%20and%20Functions/readme.md) In computer programming, a statement is a syntactic unit of an imperative programming language that expresses some action to be carried out. A program written in such a language is formed by a sequence of one or more statements. A statement may have internal components (e.g., expressions). A function is a block of statements that performs a specific task. Functions accept data, process it, and return a result. Functions are written primarily to support the concept of reusability. Once a function is written, it can be called easily, without having to write the same code again and again. Different functional languages use different syntax to write a function. -
There are two main types of statements in any programming language that are necessary to build the logic of a code. 1. [Conditional-Statements](Statements%20and%20Functions/readme.md#conditional-statements) @@ -139,7 +138,6 @@ There are two types of conditional statements mainly: - if else - switch case -
2. [Loops](Statements%20and%20Functions/readme.md#loops) @@ -148,7 +146,6 @@ There are three types of conditional statements mainly: - while loop - do - while loop (a variation of while loop) -
## [Data Structures](Data%20Structures/readme.md) In computer science, a data structure is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data.