manjeet singh

C++ Program to Find Transpose of a Matrix.

C++ Program to Find Transpose of a Matrix. #include <iostream.h> int main() {     int a[10][10], trans[10…

C++ Program to Check Whether a Number is Prime or Not.

C++ Program to Check Whether a Number is Prime or Not. #include <iostream.h> int main() {   int n, i;   boo…

While Loop in C++.

Loops are used in programming to repeat a specific block of code. In this article, you will learn to create while and do..…

Load More
That is All