What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
859In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
876What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
955Post New C++ General Questions
Is there any function that can skip certain number of characters present in the input stream?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
Explain dangling pointer.
Do the names of parameters have to agree in the prototype, definition, and call to the function?
Define stacks. Provide an example where they are useful.
Explain the concept of dynamic allocation of memory?
What is a block in c++?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Program to check whether a word is a sub-string or not of a string typed
Which is better turbo c++ or dev c++?
Write about the retrieval of n number of objects during the process of delete[]p?
Why c++ is called oop?
What is a constant reference?
Explain how functions are classified in C++ ?
Is it possible to provide special behavior for one instance of a template but not for other instances?