Definition: In C, C++ and C#, it is possible to increment a variable in an expression.
Post Increment means that the variable is incremented after the expression is evaluated. E.g.
int OldValue = 9;OldValue is now 10, but BigValue is 9, the value of OldValue before it was incremented.
int BigValue = OldValue++;
Glossary:
A B C D E F G H I J K L M N O P Q R S T U V W X Y ZExamples:
for (int i=0; i< 10; i++)
{
printf("Hello") ;
}

