Hi,
I'm learning C++ at the moment using one of Jesse Liberty's books and got to the pointers day.
They ask to code a stray pointer as an exercise and give as a solution the following code:
int main()
{
int *pVar;
*pVar = 9;
return 0;
}
Could anyone tell me why is pVar a stray pointer?
Thanks,