Out of curiosity, which British party is closest to the American Libertarian party?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: dkh on Sat 23/05/2009 02:07:22I was actually referring to C++'s ability to add variables to classes easily, thus eliminating the need for global variables.Quote from: Anteater on Fri 22/05/2009 23:11:57
It's at times like this that I miss C++
For the record, C/C++ doesn't exactly take kindly to null pointers either.
int atb[];
int j = 0;
function repetedly_execute()
{
while(j<Game.CharacterCount)
{
atb[j] = atb[j] + 1;
if(j > Game.CharacterCount)
{
j = 0;
}
}
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.052 seconds with 15 queries.