R
RayLopez99
// consider:
int i = 0
i = i++;
int j = 0;
j++;
int k = 0;
k = k + 1;
//
Why is it the first output for i gives zero, while the next two, for j
and k, give 1?
Why ask why?
That's just the way it is...
RL
int i = 0
i = i++;
int j = 0;
j++;
int k = 0;
k = k + 1;
//
Why is it the first output for i gives zero, while the next two, for j
and k, give 1?
Why ask why?
That's just the way it is...
RL