Server : Apache System : Linux profile 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64 User : apache ( 48) PHP Version : 8.0.28 Disable Function : NONE Directory : /var/www/html/venkat/old/ |
#include<stdio.h>
int comp(int,int);
int main()
{
int a,b,c,x,y;
printf("enter range");
scanf("%d %d",&a,&b);
if(a>b)
{
x=a;
a=b;
b=x;
}
c=comp(a,b);
return 0;
}
int comp(int d, int e)
{
int i,f,g;
for(f=d;f<=e;f++)
{
for(i=2;i<e;i++)
{
if(f%i==0)
{
if(f==i)
break;
printf("%d ",f );
break;
}
}
}
return (d);
}