You will not get any error.
Its just application of logical operators.
Start evaluating from Left to right. All the values get post incremented.
m=i++&&j++&&k++||l++;
m = -1 && -1 && 0 || 2 ...