hello.
so far i have this program to generate the prime numbers (numbers whose only factors are 1 and themselves) between 1 and 100.
what's wrong with this picture?
#include <stdio.h>
main
{
int i,j,k,l=0;
for i=2; i<=20; ++i
{
for j=1; j<=i ; ++j
{
k = i%j;
if k == 0
{ l = ++l;
}
if l == 2
{printf "%d is a prime \n",i
}
}
}
return 0;
}thanks for the tips / suggestions
G