Answer Posted / manish shikarbar
answer is :1
Example:
class Test
{
};
Test Obj;
int size = sizeof(Obj); // answer is 1
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is a class template in c++?
What is a responder chain?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
Explain the register storage classes in c++.
List the types of polymorphism in c++?
What is late binding c++?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Describe Trees using C++ with an example.
What is lambda expression c++?
What is buffering in c++?
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
What is constructor in C++?
Tell me can a pure virtual function have an implementation?
What is endl?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3