Write a single instruction that will find the remainder of
integral division when x is divided by y. Have the answer
stored in z.
z=x%y;
my answer surety %=60%
_Nithin Devang
| Is This Answer Correct ? | 2 Yes | 0 No |
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
What do you mean by function and operator overloading in c++?
What is the function to call to turn an ascii string into a long?
Why is it necessary to use a reference in the argument to the copy constructor?
Brief explaination about #include<iostream.h>, cin and cout
What is difference c and c++?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
What is the use of structure in c++?
structure that describe a hotel with name, address,rooms and number of rooms
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
What is the main purpose of c++?
What is flag in computer?