Why we follow top down approach in C-language and bottom up approach in C++?Explain in detail.
Why is it suggested not to use malloc() or calloc() in C++ for memory allocation?
Latest Answer: They cannot call contructors and destructors. ...
When can it happen that before calling main function itself program gets crashed?
Why function pointers are not dereferanced?
If you need a function that will handle multi-dimensional arrays, you must specify the following sizes inside the square brackets.Choose one answer. a. All sizes except the first dimension b. None of
Latest Answer: d. All the sizes ...
A two dimension array can also be thought of asChoose one answer. a. Table. b. Array of arrays.c. A file.d. None of the above e. A and B
Latest Answer: e. A and B ...
Explain the resolution of a function by C ++ complier in the case of function overloading.
Latest Answer: By Name mangling ...
Explain the exception handling features of C++ program with a suitable example
Latest Answer: C++ has some speical handlers for exception while at run time, they are try......catch.try.....catch....finally.try....throw....catch.When in above 3 cases, exception which is generated caught by CATCH part and print some information about that exception.try{code ...
Write a C++ program to find the GOD of two numbers
Latest Answer: #include using namespace std;int main ( int na, char * args[]){ cout
Write a C++ program to find the type of a triangle by reading three sides of a triangle.
Latest Answer: #include#includevoid main(){ int a,b,c; cout
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top