fork download
  1. #include <stdio.h>
  2.  
  3. struct Foo {
  4. unsigned a : 16, b : 16;
  5. };
  6.  
  7. int main(void) {
  8. struct Foo bar = {13, 42};
  9.  
  10. printf("%d %d", bar.a, bar.b);
  11. }
  12.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
13 42