Explain the concept of friend function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the register storage classes in c++.
Is c++ a good first language to learn?
If I is an integer variable, which is faster ++i or i++?
Difference between an inspector and a mutator
How do you allocate and deallocate memory in C++?
What is static class data?
What is type of 'this' pointer?
Implement strcmp
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
How the programmer of a class should decide whether to declare member function or a friend function?
Why the usage of pointers in C++ is not recommended ?
What is size of Empty Class?