Hi guys~

when I read some tutorial files something confused me a bit this moment. the code is as follows:

int *pPointer;
void SomeFunction()
{
pPointer = new int;
*pPointer = 25;
}


what about the new here ?

And this line: pPointer = new int;
is pPointer pointing to the address of new int or to its value ?

Regards~