Browsing tag

Cpp language

Cpp program to find middle of three numbers

Cpp program to find middle of three numbers In this tutorial, we will discuss the Cpp program to find middle of three numbers. This post explains how to find middle number among three numbers using if statements and & operator in C++. There are many ways to find the middle number of three numbers. but…

Cpp Program to display smallest among three numbers

Cpp Program to display smallest among three numbers In this tutorial, we will discuss the Cpp Program to display the smallest among the three numbers. In this program, we will discuss a simple concept of the program to find the smallest number among three numbers in the Cpp programming language. In this topic, we learn…

Cpp program to biggest and smallest of three numbers

Cpp program to biggest and smallest of three numbers In this program, we will discuss a simple concept of program to find the smallest and largest number among three numbers in the Cpp programming language. In this topic, we learn how to find the smallest and biggest number from given three numbers using if- elseif…

Cpp program to display smallest number of an Array

Cpp program to display smallest number of an Array In this tutorial, we will discuss the concept of Cpp program to display smallest number of an Array. In this topic, we will learn how to find the smallest elements of array elements in Cpp programming language This program gets “n” number of elements and Enter…

Cpp program to display smallest and largest number in Array

Cpp program to display smallest and largest number in Array In this tutorial, we will discuss the  concept of Cpp program to display smallest and largest number in Array. In this topic, we will learn how to find the smallest and largest elements of array elements in Cpp programming language This program gets “n” number…

Cpp program to add two numbers using function

Cpp program to add two numbers using function In this tutorial, we will discuss the Cpp program to add two numbers using the function. In this topic, we will learn a simple concept of how to add two number(integer , floating point)using the function in the C++ programming language already we will know the same concept using…

Reverse number pattern in Cpp using while loop

Reverse number pattern in Cpp using while loop In this tutorial, we will discuss Reverse number pattern in Cpp using while loop In C++ language, we can use for loop, while loop, do-while loop to display various number, star, alphabet and binary number patterns In this topic, we demonstrate how to display  some reversed number …

Reverse order number pattern in Cpp using for loop

In this tutorial, we will discuss a concept of Reverse order number pattern in Cpp using for loop In C++ language, we can use for loop, while loop, do-while loop to display various number, star, alphabet and binary number patterns In this topic, we demonstrate how to display  some reversed number  patterns using the nested…

Cpp program to display patterns using do while loop

Cpp program to display patterns using do while loop In this tutorial, we will discuss the concept of Cpp program to display patterns using do while loop. In Cpp language, we can use for loop, while loop, do-while loop to display various number, star, alphabet and binary number patterns In this topic, we demonstrate how…

Cpp program to multiply two numbers using function

Cpp program to multiply two numbers using function In this tutorial, we will discuss the Cpp program to multiply two  numbers using the function In this topic, we will learn a simple concept of how to multiply two integers using the function in the C++ programming language already we will know the same concept using the operator…