What does these conditions mean in C++:
if (whereto)
if (!nE)
for (cur=first; cur; cur=cur->next)
if (del->prev)
I am still beginner in C++. learned the basic conditions but those conditions are not clear for me. What do the expressions whereto
, !ne
, cur
, and del->prov
mean in a conditional
Could someone give me a hint?