Skip to content
Snippets Groups Projects
ptr2.e 81 B
int main(){
  int x = 0;
  int *y = &x;
  int** z = &y;
  **z = 3;
  return x;
}