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.
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.