Skip to main content

Definitions by Programming Extraordinaire

Incrementing the value of c to by one. Another way of writing
c=c+1; or c+=1;

Used in multiple programming languages.
for(int c=0; c < 5; c++)
cout << "What a boring definition\n";