Features
If we write some new data to a pointer or a link, then this will also be reflected in the variable to which they point.
Pointers:
123456int a = 2; int *pa = &a; cout << a << endl; *pa = 50; cout << a;
References:
123456int a = 2; int &ra = a; cout << a << endl; ra = 50; cout << a;
Tout était clair ?
Merci pour vos commentaires !
Section 2. Chapitre 8
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Awesome!
Completion rate improved to 2.94
Features
Glissez pour afficher le menu
If we write some new data to a pointer or a link, then this will also be reflected in the variable to which they point.
Pointers:
123456int a = 2; int *pa = &a; cout << a << endl; *pa = 50; cout << a;
References:
123456int a = 2; int &ra = a; cout << a << endl; ra = 50; cout << a;
Tout était clair ?
Merci pour vos commentaires !
Section 2. Chapitre 8