C > Beginners Lab Assignments
Program for Prime Number Generation
Program for Prime Number Generation #include
main() { int n,i=1,j,c; clrscr(); printf("Enter Number Of Terms "); printf("Prime Numbers Are Follwing "); scanf("%d",&n); while(i<=n) { c=0; for(j=1;j<=i;j++) { if(i%j==0) c++; } if(c==2) printf("%d ",i) i++; } getch(); }
C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting