0

Can someone tell me how this works...

S[j++]= S[i] Means how this assigning is done...

11th Apr 2020, 4:07 AM
Tan
Tan - avatar
1 Answer
0
S[j] = S[i] ; j++; Post fix operator in j++, first j value is used in expression then as a next expression from stack is increamentation...
11th Apr 2020, 6:57 AM
Jayakrishna 🇼🇳