User profile: anarelle

User info
User name:anarelle
History
Joined:
Number of posts:68
Latest posts:

Can heap variables have an identifier?
I've always thought of variables stored in the heap as variables that can only be accessed (indirect...

Weird pointer situation I don't understand
I see now! Thanks for the information! :)

Weird pointer situation I don't understand
I'm a bit confused about the output of the following code: [code] char* a = new char; char*...

variable scope
I'm aware of the "avoid global variables" rule (and how you can still use them in specific cases and...

Are parameters by reference automatically "dereferenced"?
I had never thought of this before, but I noticed that the & operator behaves differently when used ...