summaryrefslogtreecommitdiff
path: root/c,cc/padding.cc
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-09-06 22:32:49 +0100
committerPatrick Simianer <p@simianer.de>2014-09-06 22:32:49 +0100
commit626c2cd921e7442c20ac1be7be0b9ecb44d00c95 (patch)
treed9bb1d4c670ffc3e6094202dc2d5764040c4c1ff /c,cc/padding.cc
parent01215a3f542df6692ef12b4e4b5fed551d065545 (diff)
cc examples
Diffstat (limited to 'c,cc/padding.cc')
-rw-r--r--c,cc/padding.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/c,cc/padding.cc b/c,cc/padding.cc
new file mode 100644
index 0000000..7ac9be7
--- /dev/null
+++ b/c,cc/padding.cc
@@ -0,0 +1,32 @@
+#include <iostream>
+#include <string>
+
+using namespace std;
+
+struct foo {
+ int a;
+ string b;
+ string b1;
+ int c;
+ string b2;
+ string b3;
+};
+
+struct bar {
+ int a;
+ int c;
+ string b;
+ string b1;
+ string b2;
+ string b3;
+};
+
+int
+main(void)
+{
+ cout << sizeof(foo) << endl;
+ cout << sizeof(bar) << endl;
+
+ return 0;
+}
+