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
Is anything faster than c?
Why doesnt the call scanf work?
Why do we use stdio h and conio h?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
How to define structures? ·
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Explain data types & how many data types supported by c?
Why is structure padding done in c?
How do I send escape sequences to control a terminal or other device?
What is identifiers in c with examples?
How arrays can be passed to a user defined function
What is the explanation for cyclic nature of data types in c?
Do you know what are bitwise shift operators in c programming?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is echo in c programming?