Posts by anastaciu • 143 points
1 post
-
4
votes2
answers92
viewsQ: What term should I use in English for "dereference" a pointer
As you know in English the term Dereferencing is used to indicate access to the value stored at an address stored on a pointer i and..: int valor = 10; int *ptr = &valor; *ptr = 20; //…