Hi, I am getting into pointer and linked lists now!
Here is my question,

Code:
int *x;
int *y = new int;
If I am reading this chapter right, this just allocates memory it does not initialize memory, am I right???
Thanks!!!