Hi,
When I create an enum like this
enum x {aaa,bbb,ccc};
cout<<sizeof(x)<<endl; shows the 4

if I put the enum in a class like this
class abc{
public:
enum a { aaa,bbb,ccc=102,dd};

};

and in the main I Print tha size of the object it should show me 4 again but it is showing 1

I think this is wrong. I am using .NET compiler

plz clarify