fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Foo
  5. {
  6. char a;
  7. } __attribute__ ((aligned (16)));
  8.  
  9. int main()
  10. {
  11. cout << sizeof(Foo) << endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
16