Computer Science, asked by abhishekmohanty166, 2 days ago

You are an examiner and are taking an exam for students writing a program to find PRIME NUMBERS in a particular range. What are the test cases you will put to verify the program?

Answers

Answered by dhairya7963
0

Program to find prime numbers in a given range using loop

// C program to find prime numbers in a given range.

#include <stdio.h>

int main()

{

int a, b, i, flag;

printf(“\nEnter start value : “);

scanf(“%d”,&a);

Similar questions