C Program to check if a input number is a prime number or not
Problem
Write a program in C to check whether a number is a prime number or not.
How to find if a number is a prime number in C ?
A Prime Number is a number that is divisible by 1 and by itself. Some of the examples of the prime number are 2 , 3 , 5 etc.
Here’s a program in C demonstrating how to find whether the given number is a prime number or not.
C
x
26
26
1
#include <stdio.h>
2
int main()
3
{
4
int input, index;
5
int flag=0;
6
printf("Abundantcode.com coding sample \n");
7
8
printf("Enter a number : ");
9
scanf("%d",&input);
10
11
for(index=2; index<=input/2; ++index)
12
{
13
if(input%index==0)
14
{
15
flag=1;
16
break;
17
}
18
}
19
20
if (flag==0)
21
printf("%d is a prime number.",input);
22
else
23
printf("%d is not a prime number.",input);
24
25
return 0;
26
}
Output
Abundantcode.com coding sample
Enter a number : 7
7 is a prime number.
Leave Your Comment