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 |
WHAT IS ABSTRACT DATA TYPE
please send me the code for multiplying sparse matrix using c
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is structure and union in c?
disadvantages of realloc ?
What is default value of global variable in c?
what is the use of #pragma pack, wer it is used?
provide an example of the Group by clause, when would you use this clause
what is difference between array of characters and string
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
what is the role you expect in software industry?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran