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