Hi,

Qt Code:
  1. int* a = new int;
  2. int** b = &a;
  3. delete a;
  4. a = new int;
To copy to clipboard, switch view to plain text mode 

When creating the new "int" pointer "a", can "**b" be accessed or it will access to a bad memory data?

Thanks,