what is the size of a class which contains no member
variables but has two objects??? is it 1 or 2??
Answer Posted / rao
2 (if two objects are empty class) otherwise Note : The
size of class = the size of Data members of the objects +
Size of data members of the Class.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what is c++
What is the best c++ compiler?
What is cin clear () in c++?
What is data types c++?
What is a syntax in c++?
How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
Explain about Garbage Collector?
Does c++ vector allocate memory?
What are iterators in c++?
What is dynamic and static typing?
When should you use global variables?
Is recursion allowed in inline functions?
Should you pass exceptions by value or by reference?
What are single and multiple inheritances in c++?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02