Pass by Reference
By reference:
12345678910void incValue(int &x) { x++; } int main() { int x = 1; incValue(x); cout << x; return 0; }
Here we change x as the function works with the address (reference) of this variable. It can be useful in case you need to change the value of the parameters.
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 4. Hoofdstuk 8
Vraag AI
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.
Awesome!
Completion rate improved to 2.94
Pass by Reference
Veeg om het menu te tonen
By reference:
12345678910void incValue(int &x) { x++; } int main() { int x = 1; incValue(x); cout << x; return 0; }
Here we change x as the function works with the address (reference) of this variable. It can be useful in case you need to change the value of the parameters.
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 4. Hoofdstuk 8