LECTURE : ABCD Pyramid-Loop Pyramid

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