What is the type of this pointer in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is "mutable" keyword?
What is static function? Explain with an example
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
Explain linear search.
Explain the scope resolution operator?
Describe new operator?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
Differentiate between the message and method in c++?
Explain the extern storage classes in c++.
Floating point representation and output seems to be compiler dependent?
Which compiler does turbo c++ use?
What are smart pointer? Whats its use?