[ create a new paste ] login | about

Link: http://codepad.org/zAMRYS91    [ raw code | output | fork ]

C++, pasted on Mar 13:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<iostream>
using namespace std;
#pragma pack(8)
class A1
{
public:
       float a;
double d;

A1();
~A1();
};

int main()
{
 cout<<sizeof(A1)<<endl;
return 0;
 }


Output:
1
12


Create a new paste based on this one


Comments: