What does the expression j++ mean ?
LECTURE : ABCD Pyramid-Loop Pyramid
@Riankk hey krishanu this is increment operator it add one to it’s existing value.
like
j=1
so j++;
is j=j+1;
so j=2
What does the expression j++ mean ?
@Riankk hey krishanu this is increment operator it add one to it’s existing value.
like
j=1
so j++;
is j=j+1;
so j=2