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 c program to find reminder and quotient if one number
is divided by other.to code this program don't use more than 2
variables

Answer Posted / juli

void main()
{
int n,d;
printf("Enter two no");
scanf("%d%d",&n,&d);
printf("%d",(n%d));
printf("\t%d",n/d);
}

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is anything faster than c?

969


Why doesnt the call scanf work?

1137


Why do we use stdio h and conio h?

1031


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3632


‎How to define structures? · ‎

1031


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1227


Explain data types & how many data types supported by c?

1024


Why is structure padding done in c?

1070


How do I send escape sequences to control a terminal or other device?

1013


What is identifiers in c with examples?

1118


How arrays can be passed to a user defined function

966


What is the explanation for cyclic nature of data types in c?

1139


Do you know what are bitwise shift operators in c programming?

1059


the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above

989


What is echo in c programming?

963