Posts by Antonio Schönmann • 31 points
1 post
-
3
votes3
answers104
viewsA: Why do you use a vector with a name on it?
You seem to have confused some things. In C/C++: t foo[bar] Represents the declaration of a variable foo type t, allocating a continuous addressing space (vector), and finally assigning the address…