No products in the cart.

WAP to print prime numbers between …

CBSE, JEE, NEET, CUET

CBSE, JEE, NEET, CUET

Question Bank, Mock Tests, Exam Papers

NCERT Solutions, Sample Papers, Notes, Videos

WAP to print prime numbers between two given numbers.
  • 1 answers

Sia ? 6 years ago

#include <stdio.h>

int main()

{ int low, high, i, flag;

printf("Enter two numbers(intervals): ");

scanf("%d %d", &low, &high);

printf("Prime numbers between %d and %d are: ", low, high);

while (low < high)

{ flag = 0;

for(i = 2; i <= low/2; ++i)

{ if(low % i == 0)

{ flag = 1;

break; } }

if (flag == 0)

printf("%d ", low);

++low; }

return 0; }

http://mycbseguide.com/examin8/

Related Questions

Case study questions of chapter 1
  • 0 answers

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App