{}
run-icon
main.cpp
#include <iostream> using namespace std; int main() { int x = 10; int *p = &x; int **pp = &p; **pp = 20; cout << x; }
Output