#include
using namespace std;
class car{
string name;
};
int main()
{
cout<<sizeof(car)<<endl;
}
IN THIS CASE MY ANSWER IS COMING OUT TO BE 24 .WHY SO??
#include
using namespace std;
class car{
string name;
};
int main()
{
cout<<sizeof(car)<<endl;
}
IN THIS CASE MY ANSWER IS COMING OUT TO BE 24 .WHY SO??
hello @deck123
it is showing how much memory a class will take.
here size of string is not fixed so probably u will get some garbage value.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.