If statement in C programming language

If statements in C programming language In this tutorial, we will discuss If statement in C programming language if …else…statement Three type of “if“ statements are mainly available in Java: if statements if else statements if else if else statements if statements Declaration Syntax if(Test_condition){ statement(s) } //this statements are false control flow jump out…

if statement in Python programming language

if statement in Python programming language In this tutorial, we will learn about if statement in Python programming language In the Python programming language, the if..elif..else statement is used for decision making. If statement in Python Declaration Syntax   Flow diagram of if statement in Python   Here, Initially, the program test expression is evaluated…

Nested if statement in Java language

Nested if statement in Java language Here, we will discuss Nested if statement in Java language In the Java programming language, the Nested if statements use if -else statements inside one or more if or else statements. One or more conditions are evaluated by the nested if statements Declaration Syntax if(test_expression1) {     //statements //Executes when…

Nested if in Python programming language

Nested if in Python programming language In this tutorial,we will discuss Nested if in Python programming language We can have an if..elif..else statements inside another if ..elif..else…. statements. Which is known as nested if in Python language We will discuss this in this tutorial about Nested if in Python programming language In the nested if,…

Nested if in Cpp programming language

Nested if in Cpp programming language We will learn about Nested if in Cpp programming language In the C++ programming language, use of if statements inside another if block or another else block is called nested if statements. Declaration Syntax The syntax of nested if in C++ language if(Test_expression){ //outer if statement(s) //when the test…

Nested for loop in Python programming language

Nested for loop in Python programming language We will learn about Nested for loop in Python programming language Already, we learnt about for loop in python. In python programming language, a for loop inside another for loop is called as nested for loop. Nested for loop has two parts of the loop Inner for loop Outer…

Operator in Cpp programming language

Operator in Cpp programming language We will learn about Operator in Cpp programming language. C++ provides a rich set of the operator to manipulate variables. We can divide all the C++ operators into the following groups: Arithmetic Operators Assignment Operators Relational Operators Unary Operator Logical Operators Bitwise Operator C++ Arithmetic Operators Arithmetic operators are used…

Two dimension Array in C programming language

Two dimensional Array in C programming language We will learn about Two dimension Array in C programming language In the C programming language, an array is a data structure which is of fixed size and sequential collection of an element of the same type of data. An array can be used to represent a list…

Nested while loop in Java programming language

Nested while loop in Java programming language We will learn this tutorial about Nested while loop in Java programming language Nested while loop When a while loop exists inside the body of another while loop, it is known as nested while loop in Java. Initially, the outer loop executes once and the afterwards inner loop…

Three dimension Array in C programming language

Three dimensional Array in C programming language In this tutorial, we will discuss Three dimension Array in C programming language In the C programming language, an array is a fixed size of a sequential collection of elements of the same data type. An array can represent a list of number(int), name(String), floating point value or…