Temp[k++] increment before assignment or after?

temp[k++] increment before assignment or after?

hi abhay
it is similar to temp[k]=arr[i](suppose arr[] is the array)
then k++;
so it is increment after assignment

Thanks for help…