fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. struct {int x; int y;} foo = {4, 2};
  6. struct {int x; int y;} *bar = &foo;
  7. printf("%d", bar->y);
  8. }
  9.  
Success #stdin #stdout 0s 4524KB
stdin
Standard input is empty
stdout
2