fork download
  1. int main(void) {
  2. int flag = 0, array[30], b = 3;
  3.  
  4. if (!flag) {
  5. int (*M)[b] = (int (*)[b]) array;
  6. // note that dereferencing M here is undefined behaviour
  7. (void)M;
  8. }
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty