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();
}

From Side Hustle to Main Income: 7 Proven Ways to Make Money Online in 2025

  From Side Hustle to Main Income: 7 Proven Ways to Make Money Online in 2025 Introduction: The New Era of Earning – Why 2025 is Your Year t...