Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a program to print all the prime numbers with in the
given range

Answer Posted / chavidi

void prime(int a,int b)
{
int i,j,c
for(i=a;i<=b;i++)
{
c=0;
for(j=1;j<=a;j++)
{
if(a%j==0)
{
c++;
}
}
if(c==2)
printf(i);
}
}

Is This Answer Correct ?    8 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is storage class?

1025


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

2413


Can we declare variables anywhere in c?

967


How can I automatically locate a programs configuration files in the same directory as the executable?

1123


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1689


Is c compiled or interpreted?

1148


What's the best way of making my program efficient?

1053


What is a program flowchart and explain how does it help in writing a program?

1258


write a program to create a sparse matrix using dynamic memory allocation.

4857


What is meant by gets in c?

1120


What are the disadvantages of external storage class?

1021


How do you determine whether to use a stream function or a low-level function?

1099


Tell me can the size of an array be declared at runtime?

1002


How can I read a binary data file properly?

1111


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

2063