Program to print the series of Prime number


#include<stdio.h>
#include<conio.h>
int main()
{
int a,b,i,j,prime,n;
clrscr();
printf("Specify the limit");
scanf("%d",&n);
for(i=2;i<=n;i++)
{
   prime=0;
                   for(j=2;j<i;j++)
                   {
                      if(i%j==0)
                      prime=1;
                    }
  if(prime==0)
  printf("|%d",i);
}
getch();
return 0;
}

0 comments:

Post a Comment