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 |
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Who invented bcpl language?
What is the difference between a structure and a union?
What are the rules for identifiers in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
how to find greatet of 10 numbers without using array?
why do some people write if(0 == x) instead of if(x == 0)?
Where is volatile variable stored?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Why doesn't C support function overloading?
How does placing some code lines between the comment symbol help in debugging the code?
Explain why can’t constant values be used to define an array’s initial size?