Program to check whether an input number is prime or not. Rajnish January 6, 2020 program:- #include<stdio.h> #inclue<conio.h> void main() { int n,i; printf (“Enter a number”); scanf(“%d”,&n); for(i=2;i<=n–1,i++) { if(n%i==0) break; } if(i==n) printf(“number is prime number”); else printf (“not prime”); getch(); }
Wah
Nice break programm
SHAILESH
That's very good bhaiya 👍
Waah hero
NYC sir
thanks it is easy to understand
Thank you sir for this content