- This topic has 0 replies, 1 voice, and was last updated 16 years, 1 month ago by .
Viewing 0 reply threads
Viewing 0 reply threads
- The forum ‘C Programming’ is closed to new topics and replies.
Home › Forums › C Programming › sequence points in C
why the following expression is undefined in C :-
x = i++ * i++;
but the foillowing is valid :-
x = i++ && i++;
Plz tell me the reason…
Thanks.