What do you know about near, far and huge pointer?
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
Do the names of parameters have to agree in the prototype, definition, and call to the function?
Why is main an int?
What are member functions used in c++?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What is purpose of new operator?
what are the iterator and generic algorithms.
Explain how we implement exception handling in c++?
How do you link a C++ program to C functions?
Will a catch statement catch a derived exception if it is looking for the base class?
What is the type of this pointer in c++?
What is array in c++ pdf?