printf(" Welcome.
C programmer is sample source code search engine. Do you need sample source code ? Do you search program code ? Do you want find example code ? Do you want learning coding ? Everything is here. You can get code. You can search code, application sample, code project. Various programming languages code examples, sample source codes is here. This Site also Provide Help C/c++ Language Developed. ")
If need to be any Kind of email Us
cprogrammerbd@gmail.com.
#include stdio
#include conio
int main()
{
int i,j,n;
printf("Enter Number Of Terms:");
scanf("%d",&n);
printf("Prime Numbers Are Follwing ");
for(i=2;i<=n;i++) { for(j=2;j<=i;j++) { if(i%j==0) break; } if(i==j) printf("%d",i); } return 0; } Any more about prime number
No comments:
Post a Comment