fork download
  1. typedef struct
  2. {
  3. int a;
  4. char b[];
  5. } flex;
  6.  
  7. typedef struct
  8. {
  9. int a;
  10. const char *b[];
  11. } flex2;
  12.  
  13.  
  14. int main(void) {
  15.  
  16. flex f = { 1 };
  17. flex2 f2 = { 1 };
  18.  
  19. return f.a - f2.a;
  20. }
  21.  
Success #stdin #stdout 0s 2048KB
stdin
Standard input is empty
stdout
Standard output is empty