Explain the volatile and mutable keywords.
No Answer is Posted For this Question
Be the First to Post Answer
What is a dynamic binding in c++?
What programming language should I learn first?
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.
Is c++ a good first language to learn?
Define a constructor - what it is and how it might be called (2 methods)?
What is the difference between passing by reference and passing a reference?
Write some differences between an external iterator and an internal iterator?
Out of fgets() and gets() which function is safe to use and why?
Do you know what are pure virtual functions?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Who invented turbo c++?
What's the best free c++ profiler for windows?