+ 1
What is sequence point in C language or in programing langauges?
https://code.sololearn.com/czYFjj5jpuUb/?ref=app i got this above example on wikipedia but didn't understand the concept of it can someone explain in some what easy way thanks in advance
3 Respostas
+ 17
if U have written int j=i++; in place of int i=i++;
then the value of i will get incremented
+ 1
int i=1;i<3;i++;😀
if i<3
you should put "i<3" to make "i++" work.When you describe the condation where "i" is less then "3" then increment get triggred and increse 1 --2
https://code.sololearn.com/cCEv5TMv2POF/?ref=app