0 0 1 2 -1
0 0 1 2 -1
0,0,1,3,0
is this correct
the output will be 00131
All the effect will be occur at next statement because of post increment
the || operator is the last element and the value of l is 2 so that any value of the previous generation will be ommited and the value of m will be true i.e. 1
m=0||1 is 1
i=-1 --> 0
j=-1 --> 0
k=0 --> 1
l=2 --> 3
m = 1
i=0,j=0,k=1,l=3,m=0