Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program for Prime Number Generation.

void main()

{

int n,j,a=0,i;

clrscr();

printf(" Please Enter a number :");

scanf("%d",&n);

printf("\n\n");

printf("OUTPUT:\n");

printf("------");

printf("\n\n");

printf("The Prime Number series is\n");

printf("**************************");

for(j=1;j<=n;j++)

{

for(i=2;i
{

if(j%i==0)

{

a=1;

goto x;

}

}

if((a==0)&&(j!=1))

{

printf("\n%d",j);

}

x:

a=0;

}

getch();

}

Download All C Programming & Study Materials PDF