write a program to check a it is prime or not
Answers
Answered by
1
include<stdio.h>
int main(){
int n,i,m=0,flag=0;
printf("Enter the number to check prime:");
scanf("%d",&n);
m=n/2;
for(i=2;i<=m;i++)
{
Answered by
1
this a program that you find
Attachments:
Similar questions