Q : Write a program to display all the prime numbers between two positive integers m and n. The values of m and n are to be taken from the user.
Solution :
#include<stdio.h>
void main()
{
int n,m,p;
printf("Enter range starting
number>> ");
scanf("%d",&m);