Random
Source Code

c++

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";

by Programming Extraordinaire August 7, 2003

396👍 182👎