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