answersLogoWhite

0


Best Answer

#include <stdio.h> void main() { int n,i=1,j,c; clrscr(); printf("Enter Number Of Terms"); scanf("%d",&n);

printf("Prime Numbers Are Following");

for(i=1;i<=n;i++)

{ c=0; for(j=1;j<=i;j++) { if(i%j==0) c++; } if(c==2) printf("%d",i); } getch(); }

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

#include <stdio.h>

int main(int, char*) {

int i, j, breakflag;

for (i = 2; i <= 100; ++i) {

breakflag = 0;

for (j = 2; j < i; ++j) {

if (i % j == 0) {

breakflag = 1;

break;

}

}

if (!breakflag) printf ("%d ", i);

}

printf ("\n");

return 0;

}

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

It is type-dependent:

for 'int': printf ("%d", prime);

for 'long': printf ("%ld", prime);

for 'long long': printf ("%lld", prime);

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How to print prime numbers in C language program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Program for print prime all number from 1 to 100 in foxpro?

Prime numbers are numbers that are only divisible by themselves and the number 1. You can write a program to print all prime numbers from 1 to 100 in FoxPro.


What BASIC program can compute and display all prime numbers from 1 to 40?

PRINT 2,3,5,7,11,13,17,19,23,29,31,37


Write a program to print first 100 alternative prime numbers?

This would require some computer knowledge. It can make it easier to find out the prime numbers without figuring it out in your head.


How can print prime numbers in between 1-100 but not adjust 40-50 in php language?

Use a counted loop in the closed range [1:100]. If the count is in the closed range [40:50], print the number. For all other numbers outwith this range, only print the number if it is prime.


How to draw Flowchart to print prime numbers from 1 to 100 using while loop in c language?

c the book mastering c


Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


Q2 Write a program to print even numbers between 10 and 50?

You can use int i; for (i = 10; i &lt;= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.


How do you Write a program in 'c' language which accepts int numbers from the users print its reverse number x function which return value?

question clarity


How do you write a program to print numbers to 50 except prime?

First, create a for loop from a,1 to 50. Inside of that create another for loop b,2 to a-1. If a/b=int(a/b) then you know it is not prime


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.


Write a C program to find the prime numbers from 1 to 300?

/*the program to print prime no from 1 to 300*/ #include&lt;stdio.h&gt; #include&lt;conio.h&gt; void main() { int i,j; clrscr(); printf("The prime numbers from 1 to 300 are\n"); for(j=2;j&lt;=300;j++) { for(i=2;i&lt;=j/2;i++) if(j%i==0) break; if(i&gt;j/2) { printf("%d ",j); } } }


How many times will the program will print Language?

Without seeing the program, I can only say: 'zero or more times'