What is pointer -to-members in C++? Give their syntax?
structure that describe a hotel with name, address,rooms and number of rooms
What are maps in c++?
What is the full form of ios?
What are friend functions in C++?
What are the advantages of c++?
How is computer programming useful in real life?
Explain the difference between struct and class in terms of access modifier.
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
How does java differ from c and c++?
Define precondition and post-condition to a member function?
What is the advantage of c++ over c?