So, if I want to declare an array of characters I can go this way
char a[2];
char * a ;
char * a = new char[2];
Ignoring the first declaration, the other two use pointers. As far as I know the third declaration is stored in heap and is freed using the delete operator . does the second declaration also hold the array in heap ? Does it mean that if something is stored in heap and not freed can be used anywhere in a file like a variable with file linkage ? I tried both third and second declaration in one function and then using the variable in another but it didn't work, why ? Are there any other differences between the second and third declarations ?
std::vector<char>orstd::string. – Mr Lister Nov 25 '12 at 8:21ais stored on the stack. The data pointed to bya("something"): it depends where it was allocated. If you allocated it withnew, then on the heap. If you used the&operator to get the address of a stack variable, then it is on the stack. If it is a string literal, then it is probably stored in the data segment, together with static variables. – Giorgio Nov 25 '12 at 9:22