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
Answers were Sorted based on User's Feedback
Answer / 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 |
ratio,age,persentage
Explain 'bit masking'?
Explain modulus operator. What are the restrictions of a modulus operator?
Why C language is a procedural language?
how to print value of e(exp1)up to required no of digits after decimal?
with out using main how to execute the program?
What does emoji p mean?
What are loops c?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What is infinite loop?
What is the process to generate random numbers in c programming language?
What are pointers in C? Give an example where to illustrate their significance.