The Dink Network

Reply to Re: Blankety Blank

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
November 17th 2010, 02:52 PM
pig.gif
jayon
Peasant They/Them Brazil
There should be pigs flying... 
oh, just to clarify the for loop thing, you will see the following in the functions I mentioned (sometimes it's "k" instead of "i" or something):

for (int i=0;i<MAXSOMETHING;i++)

or something similar, what you should do is take the integer out like this:

int i;
for (i=0;i<MAXSOMETHING;i++)