Used by many programming languages to mean "increment". Can be a prefix or postfix operator usually.

Example in a for loop:
for(int i=0; i < n; i++)
{ //stuff goes here
}