What are the sizes and ranges of the basic c++ data types?
No Answer is Posted For this Question
Be the First to Post Answer
What size is allocated to the union variable?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What do you understand by zombie objects in c++?
How important is c++?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What does new return if there is insufficient memory to make your new object?
const char * char * const What is the differnce between the above two?
What are shallow and deep copies?
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
what you know about c++?
What are literals in C++?
Do we have to use initialization list in spite of the assignment in constructors?