can anyone tell me what is the process of i+++ increment in c++.
if you mean i++ then its incrementing the value of i once its value has been read. As an example:
i++
i
int i = 0; // i == 0 int j = i++; // j == 0, i == 1