C++ Program to Generate multiplication table In this article, we will discuss the concept of C++ Program to generate multiplication table.. In this program, we are going to learn how to generate a multiplication table using 5 ways in C++ language. This is done using for loop , while loop , do-while loop , method…
Tag: C++ language
C++ code to check whether the number is prime or not
C++ code to check whether the number is prime or not In this tutorial, we will discuss the C++ code to check whether the number is prime or not In this post, we are going to learn how to check whether the given number is prime or not using 5 ways in C++ language This is…
Check whether the given number is positive or negative or 0 in C++
Check whether the given number is positive or negative or 0 in C++ In this tutorial, we will discuss the Check whether the given number is positive or negative or 0 in C++ In this post, we are going to learn how to check whether the given number is positive or Negative or zero using…
Code to Check whether the number is odd or even using operators in C++
Code to Check whether the number is odd or even using operators in C++ In this tutorial, we will discuss Program the Code to Check whether the number is odd or even using operators in C++ In this post, we are going to learn how to check whether the given number is odd or even…
C++ program to check whether a number is even or odd|6 ways
C++ program to check whether a number is even or odd|6 ways In this tutorial, we will discuss the C++ program to check whether a number is even or odd|6 ways In this post, we are going to learn how to check whether the given numbers is even or odd using different 6 ways in…
C++ Program to Compute Quotient and Remainder
C++ Program to Compute Quotient and Remainder In this tutorial, we will discuss the C++ Program to Compute Quotient and Remainder In this post, we are going to learn how to find quotient and remainder using two numbers via different 3 ways in C++language Program to Compute Quotient and Remainder Compute Quotient and Remainder –…
Divide two numbers in C++ language|6ways
Divide two numbers in C++ language|6ways In this tutorial, we will discuss the Divide two numbers in C++ language In this post, we are going to learn how to find division of two numbers using different 6 ways in C++ language Divide two numbers in C++ -using standard method Program 1 #include <iostream> #include <conio.h> using…
C++ program to Multiply two integers|in 6ways
C++ program to Multiply two integers|in 6ways In this tutorial, we will discuss the C++ program to multiply of two numbers In this post, we are going to learn how to find multiplication of two numbers via different 6 ways in C++ language Code to Multiply two integers Code to Multiply two integers – standard…
C++ program to subtraction of two numbers | 6 different Methods
C++ program to subtraction of two numbers | 6 different Methods In this tutorial, we will discuss the C++ program to subtraction of two numbers In this post, we are going to learn how to find subtraction of two numbers via different 6 ways Subtraction of two numbers – standard method Program 1 #include <iostream>…
C++ code: Hollow Mirrored parallelogram star pattern
C++ code: Hollow Mirrored parallelogram star pattern In this article, we will discuss of the C++ code: Hollow Mirrored parallelogram star pattern We can display many types of number, star, Alphabet, Binary patterns using for.while and do-while loop in C++ language In this post, we are going to learn how to print Hollow Mirrored…