Do while loop in C Language: The do-while loop is a post-tested loop. Using the do-while loop, we can repeat the execution of several parts of the statements. The do-while loop is mainly used in the case where we need to execute the loop at least once. The do-while loopContinue Reading

Nested While Loop in C Programming Language: Writing while loop inside another while loop is called nested while loop or you can say defining one while loop inside another while loop is called nested while loop. That is why nested loops are also called “loops inside the loop”. There can beContinue Reading

What is looping? The process of repeatedly executing a statement or group of statements until the condition is satisfied is called looping. In this case, when the condition becomes false the execution of the loops terminates. The way it repeats the execution of the statements will form a circle that’sContinue Reading

Switch Statements in C Language: The switch is a keyword, by using the switch keyword we can create selection statements with multiple blocks. Multiple blocks can be constructed by using a “case” keyword. Switch case statements are a substitute for long if statements that compare a variable to several integralContinue Reading

Nested if-else statements in C Language: When an if-else statement is present inside the body of another “if” or “else” then this is called nested if-else. Nested ‘if’ statements are used when we want to check for a condition only when a previous dependent condition is true or false. C allows us to nested if statements within if statements, i.e. we can place an if statementContinue Reading

If Else statements in C Language with Examples In this article, I am going to discuss If Else Statements in C Language with Examples i.e. how if and if-else block gets executed with the help of syntax, flow chart, and multiple examples. Please read our previous articles, where we discussed the basicsContinue Reading

Control Statements in C: Control Statements are the statements that alter the flow of execution and provide better control to the programmer on the flow of execution. They are useful to write better and more complex programs. A program executes from top to bottom except when we use control statements,Continue Reading

Multi-Dimensional Array in C Language: An array of arrays is called a multi-dimensional array. In simple words, an array created with more than one dimension (size) is called a multi-dimensional array. The multi-dimensional array can be of a two-dimensional array or three-dimensional array or four-dimensional array or more.  Syntax: type name[size1][size2]…[sizeN];Example: intContinue Reading

One Dimensional Array in C: One dimensional array is an array that has only one subscript specification that is needed to specify a particular element of an array. A one-dimensional array is a structured collection of components (often called array elements) that can be accessed individually by specifying the positionContinue Reading

To run a computer system, there is a requirement of computer memory. Computer memory is one of the important components of the computer system. Therefore, it is necessary to have basic knowledge about what a computer memory is and how many types of computer memory are there. In this article,Continue Reading