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 |
to convert a string without using decrement operater and string functions
Diff between for loop and while loop?
what is Structural oriented language? give some example of this language.....?
explain about storage of union elements.
how to swap four numbers without using fifth variable?
what is the difference between unix os and linux os
What is the difference between typeof(foo) and myFoo.GetType()?
What are the applications of c language?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What is enumerated data type in c?
what about "char *(*(*a[])())();"
What is the explanation for cyclic nature of data types in c?