-->





Translate

FIND PRIME NUMBER IN C++

52 comments
What is a PRIME NUMBER? " A Natural number greater than 1 which has only two divisor 1 and itself is called prime number ". For Example:   5 is prime, because it has only two divisors 1 and itself. C++ Program To Find Prime Numbers #include<iostream.h> #include<conio.h>         void main()         {          //clrscr();    ...
Read More...