What's the most powerful programming language?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between pre and post increment/decrement operations.
What is set in c++?
Do you know the use of vtable?
What is flush programming?
What is the disadvantage of using a macro?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What is the use of object in c++?
What is meant by const_cast?
What does override mean in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
What is stl containers in c++?
what is pre-processor in C++?