+ 7
its ans 0..
beacuse j=j++; its mean when loop statement run first j caught initial value and its 0 and then increase..but after increase value doesnt store..so when again loop call j=0 store..and its happens till loop end.. and at the end j=0...
if j=++j//then its ans 99 because first increment then store.
hope u understand âș