fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. typedef struct {
  5. int west;
  6. int test[3];
  7. } S;
  8.  
  9. S s = {0, {1, 2, 3}};
  10. s.test[-1] = 4;
  11.  
  12. printf("%d", s.west);
  13. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
4