
Do you know what is a prime number?
A natural number greater than 1 which has only two divisors 1 and it is called a prime number. For example: 7 is a prime number. Because it has only two divisors 1 and 7 (itself).
Now I am going to tell you how to find a prime number by using C++ program. Just type these code below
//C++ Program...