Simuler le fonctionnement de ce programme :
<source lang=cpp>
int main() {
int n1=10; int *n2=nullptr; int n3=20; int *n4=nullptr;
n2 = &n1; n4 = n2;
cout << n1 << n2 << n3 << n4;
}