google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: C program to accept n number and store all prime numbers in an array and display this array.

Wednesday, April 1, 2015

C program to accept n number and store all prime numbers in an array and display this array.

Write a ‘C’ program to accept ‘n’ number and store all prime numbers in an array and display this array.

#include<stdio.h>
#include<conio.h>
void main()
{
int a[10],i,n,m,j,l=0,k;
clrscr();
printf("enter the range");
scanf("%d",&n);
for(i=0;i<n;i++)
{
j=2;
printf("enter the no");
scanf("%d",&m);
while(j<m)
{
k=m%j;
if(k==0)
{
break;
}
j++;
}
if(j==m)
{
a[l]=m;
l++;
}
}
printf("\n Prime No's R\n");
for(i=0;i<l;i++)
{
printf("\n%d",a[i]);
}
getch();
}

रामायण

रामायण दशरथ की तीन पत्नियाँ – कौशल्या, सुमित्रा , कैकेयी दशरथ के चार पुत्र – राम,लक्ष्मण,भरत,शत्रुघ्न दशरथ: राम के पिता और कौशल के राजा कौशल...