In C and derived language, ++ means increment. Example:

int main () {
int foo;
foo++;
}

When placed after a variable, it means "return value, then increment. Before a variable, it means "increment, then return value. See also the evil twin: --.