R
Q. Output of following C++ program?
#include<iostream> using namespace std; int main() { int x = 10; int& ref = x; ref = 20; cout << "x = " << x << endl ; x = 30; cout << "ref = " << ref << endl; return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Additive, Multiplicative, shift, Bitwise logical and assignment operators is ____ operator.
Q. Auto variables get undefined values known as
Q. A member function can always access the data in __________, (in C++).
Q. How can we make a class abstract?
Q. A class is a collection of ________ and _________
Q. In object oriented Programming the program is divided into ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐.
Q. Which one of the following is the correct operator to compare two values
Discusssion
Login to discuss.