Prime number program in c: c program for prime number, this code prints
prime numbers using c programming language. To check whether a number is
prime or not see another code below. Prime number logic: a number is
prime if it is divisible only by one and itself. Remember two is the
only even and also the smallest prime number. First few prime numbers
are 2, 3, 5, 7, 11, 13, 17....etc. Prime numbers have many applications
in computer science and mathematics. A number greater than one can be
factorized into prime numbers, For example 540 = 22*33*51
#include<stdio.h> 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; }
No comments:
Post a Comment