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 are dangling pointers? How are dangling pointers different from memory leaks?
Which header file is essential for using strcmp function?
What is structure padding & expalain wid example what is bit wise structure?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Write a program to show the workingof auto variable.
Explain what is wrong with this program statement? Void = 10;
c programming of binary addition of two binary numbers
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
List some basic data types in c?
What is getch () for?
Please list all the unary and binary operators in C.