What is & in c++ function?
Explain overriding.
How to declare a function pointer?
What are pointer-to-members in C++? Give their syntax.
What is the difference between containment and delegation?
what is the order of initialization for data?
10 Answers Amazon, TCS, Wipro,
What is object file? How can you access object file?
What are the advantage of using register variables?
What is abstraction in c++ with example?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
Explain what are mutator methods in c++?