What is implicit pointer in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How can we read/write Structures from/to data files?
Explain terminate() function?
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
Will c++ be replaced?
Enter n no. of element and delete value from desire position
What is function overriding in c++?
Which sort does c++ use?
Can create new c++ operators?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What is the difference between interpreters and compilers?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What is a "RTTI"?