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 |
1 232 34543 4567654 can anyone tell me how to slove this c question
Are c and c++ the same?
What are keywords in c with examples?
How do I use void main?
suppose there are five integers write a program to find larger among them without using if- else
write a program which will count occurance of a day between two dates.
Binary tree traversing
write a function which accept two numbers from main() and interchange them using pointers?
Do you know the purpose of 'register' keyword?
What is the difference between typedef struct and struct?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Explain what is the difference between functions getch() and getche()?