C++ Tutorial
#ifndef MAX
#define MAX
#define NMAXWANKS 100
#endif
const int nMaxWank = NMAXWANKS ;
// Wanks until maxwanks
void fuck()
{
int nWank, myWank ;
// iterates until max wanks
for( nWank = 0 ; nWank <= nMaxWank ; nWank++ )
{
// outputs my wank
cout << "fuck " << myWank << " " << endl ;
// pre-increments and post-increments my wank
++myWank++ ;
}
}