#include <stdio.h>
#include <conio.h>
void main()
{
int a[100],i,j=2;
clrscr();
for(i=0;i<100;i++)
a[i]=i+1;
printf("Prime Number between 1 to 100 \n");
for(i=0;i<100;i++)
{
for(j=2;a[i]>j;j++)
{
if(a[i]%j==0)
break;
}
if(a[i]==j || a[i]==1)
printf("%d\t",a[i]);
}
getch();
}
Showing posts with label Prime Numbers. Show all posts
Showing posts with label Prime Numbers. Show all posts
Subscribe to:
Posts (Atom)
Related Post
Array:
String functions:
General (Loops-for/while)