Quote Originally Posted by TheCPUWizard
Code:
if ((ptr) && (ptr->MethodIO))
{
}
i always make code like this:

Code:
if (ptr)
if(ptr->MethodIO)
{
}
i dont think its any diffrent..

however the evaluation stops at ptr, is this defined behavior by the standards?