Answer Posted / divyachinnamaru
Eg :
class A // empty class
{
};
int main()
{
cout<<"size of class is "<<sizeof(A)<<endl;
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
the maximum length of a character constant can be a) 2 b) 1 c) 8
What does scope resolution operator do?
Describe private, protected and public – the differences and give examples.
What is algorithm in c++ programming?
Does std endl flush?
What are the uses of c++ in the real world?
Difference between overloaded functions and overridden functions
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What is overloading unary operator?
What is the use of namespace std in C++?
Is java easier than c++?
What is the use of 'using' declaration in c++?
What is type of 'this' pointer?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is a buffer c++?