Quote:
Originally Posted by Voxel
What is the difference between having a variable that is to large like
pawn Код:
new string[1000]; //using the string here like to display "Hello" (wich is only 5 digits long)
you guys get what i mean.. so my question is like does this impact the performence or anything or ...?
thanks
|
Why would you use 1k large string when your 'Hello' string takes just 5 cells + NULL terminator. Using 1k large string for something that takes just 6 cells is just retarded.