November 24, 2003
I accept the first sense, that being, 'to make vertical', given, despite the object's orientation to the plane of the earth when the body is in its most common posture being horizontal, that the state refers to a purpose most commonly executed when the body to which its orientation is normalised is horizontal.
November 23, 2003
November 20, 2003
C++ Tutorial
Can you do crap like ++this++ in c++?
#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++ ;
}
}
Subscribe to:
Posts (Atom)