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
What are files in c++?
When you overload member functions, in what ways must they differ?
What is a multimap c++?
What are enumerations?
What are the main features of c++?
Should you pass exceptions by value or by reference?
How can a struct in c++ differs from a struct in c?
How do we balance an AVL Tree in C++?
Explain deep copy and a shallow copy?
Comment on assignment operator in c++.
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
How did c++ get its name?
How compile and run c++ program in turbo c++?
Should a constructor be public or private?
What is function overloading c++?