What things would you remember while making an interface?
No Answer is Posted For this Question
Be the First to Post Answer
Explain Text Manipulation Routines?
Can we define a constructor as virtual in c++?
Explain what data encapsulation is in c++?
What are the classes in c++?
What does asterisk mean in c++?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
Give example of a pure virtual function in c++?
What are the advantages of pointers?
can output 5 students using one dimensional array
How did c++ get its name?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
What is oops in c++?