Why is c++ called oops?
No Answer is Posted For this Question
Be the First to Post Answer
Are c and c++ similar?
What is command line arguments in C++? What are its uses? Where we have to use this?
How can you specify a class in C++?
Explain the use of vtable.
Can you sort a set c++?
what are the types of Member Functions?
What size is allocated to the union variable?
What is a container class? What are the types of container classes in c++?
Differentiate between realloc() and free().
Which operator cannot be overloaded c++?
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
When does a 'this' pointer get created?