Hi.

I have this class.
Code:
class ab{
     int a;
     char b;
    };

class cd{
   char c;
   int d;
};
what will be the size of these two classes? Will the value be different if i run it on windows and linux OS?

Thanks.