fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Foo {
  5. unsigned a : 16, b : 16;
  6. };
  7.  
  8. int main() {
  9. struct Foo bar = {13, 42};
  10.  
  11. cout << bar.a << ' ' << bar.b;
  12. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
13 42