Interestingly enough, an edition of the Encyclopedia Galactica that fell through a time-warp from 200 years in the future defines the Marketing Division of the Cirius Cybernetics Corporation as: "A bunch of mindless jerks who were the first against the wall when the revolution came."
by Existential Elevator November 30, 2003
An integer variable which, for historical reasons, is commonly used to count the iterations of a loop.
#include<iostream.h>
int main (void)
{
for(int i = 0, i <= 9999, i++)
{
cout << "All work and no play
makes Jack a dull boy.\n";
}
return 0;
}
int main (void)
{
for(int i = 0, i <= 9999, i++)
{
cout << "All work and no play
makes Jack a dull boy.\n";
}
return 0;
}
by Existential Elevator November 30, 2003