What is the difference in size of this two clasees?
Class A
{
int a;
char c;
float f;
}
Class B
{
float f;
char c;
int a;
}
Answer Posted / nisha
no difference
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can I learn c++ without learning c?
Will the following program execute?
Explain abstraction.
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Can a constructor be private?
What are register variables?
Explain the concept of memory leak?
what are the iterator and generic algorithms.
what is the use of void main() in C++ language?
Is it possible to provide default values while overloading a binary operator?
What is functions syntax in c++?
What is the purpose of extern storage specifier?
what is a class? Explain with an example.
Describe delete operator?
Where is atoi defined?