Why Pointers are not used in C++?
Can you declare an array without a size in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
What is null c++?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
What is boyce codd normal form in c++?
What are virtual functions and what is its use?
What is c++ runtime?
What does iomanip mean in c++?
Will a catch statement catch a derived exception if it is looking for the base class?
Briefly describe a B+ tree. What is bulk loading in it?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Is std :: string immutable?