14.04.2013, 19:56
Today I learned that you can easily declare big array values while defining them easily, instead of using loops.
For example:
For example:
pawn Код:
new myArray[1024] = {12, ...};
//Instead
new myArray[1024];
main()
{
for(new i = 0; i != sizeof(myArray); i++)
{
myArray[i] = 12;
}
}

