Explain operator overloading.
No Answer is Posted For this Question
Be the First to Post Answer
What is c++ programming language?
What is the full form of c++?
Define what is constructor?
What is a c++ object?
Explain the extern storage classes in c++.
What is the difference between the parameter to a template and the parameter to a function?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What is a constant? Explain with an example.
how many controls can we place on single form.
What is the difference between public, private, and protected access?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
In the derived class, which data member of the base class are visible?