Introduction
- In this article, I am explaining how to check and print a prime number.
Software Requirements
- Turbo C++ or C.
Programming
- #include < stdio.h >
- int main()
- {
- int n, i = 3, count, c;
- printf("Enter the number of prime numbers required\n");
- scanf("%d", & n);
- if (n >= 1)
- {
- printf("First %d prime numbers are :\n", n);
- printf("2\n");
- }
- for (count = 2; count <= n;)
- {
- for (c = 2; c <= i - 1; c++)
- {
- if (i % c == 0) break;
- }
- if (c == i)
- {
- printf("%d\n", i);
- count++;
- }
- i++;
- }
- return 0;
- }
Explanation
- In the above program, the prime number can be displayed in simple manner.


Output


Conclusion
- Thus, the program can be displayed and executed successfully, in a simple manner.

Abhishek AroraPosted Jul 17, 2016, 1:32 PM
Nice
kalu singh raoPosted Jul 15, 2016, 10:06 AM
Nice...