01.08.2012, 14:36
Quote:
I want to be able to add ints to an array. I have no idea how I can explain it.. Something like, when I type a command which chooses a random number, I want that random number to be added to an array.
|
pawn Код:
main ()
{
new array[4];
for(new i = 0; i < sizeof(array); i++)
{
array[i] = random(10);
//printf("%d", array[i]);
}
}