A
Q. What will be the output of the following code? int a = 10, b = 3; cout << a % b;
The modulus operator (%) returns the remainder of division. 10 % 3 results in 1.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following concepts means wrapping up of data and functions together?
Q. The following program segment in C++
Q. Which of these keywords do we use for the declaration of the friend function?
Q. ____ storage class global variable known to all functions in the current program.
Q. Which of the following is Memory Leak detection tool?
Q. The modulus operator uses ___ character.
Q. The visibility of variables inside a structure is
Discusssion
Login to discuss.