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
Why do we use namespace feature?
What is getch () for?
Explain what is operator promotion?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is wrong with this statement? Myname = 'robin';
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What is c preprocessor mean?
What are different types of pointers?
Explain what are bus errors, memory faults, and core dumps?
Lists the benefits of c programming language?
How is a structure member accessed?
What is the difference between printf and scanf )?
What is property type c?
Are local variables initialized to zero by default in c?
What is the difference between int main and void main?