Comment on local and global scope of a variable.
what is a reference variable in C++?
How can you say that a template is better than a base class?
What is command line arguments in C++? What are its uses? Where we have to use this?
Is c++ map a hash table?
Can a Structure contain a Pointer to itself?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is :: operator in c++?
What is the most powerful coding language?
What are the various situations where a copy constructor is invoked?
What is constructor c++?
Why c++ is faster than java?