Whats the difference?

Viewed 14

while( fast->next!=NULL && fast!=NULL )

while (fast != NULL && fast->next != NULL)

what is the difference between these two statements? I thought these are the same and we can write any conditions at any side.

0 Answers
Related