What does this mean - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: What does this mean (
/showthread.php?tid=279367)
What does this mean -
[IL]HeHu - 26.08.2011
I have browsed through the forums and saw someone did something like that:
PHP код:
new string[0x80];
So what is the 0x80? as in I see it's something connected to HEX but why, what, and how much is it?
Re: What does this mean -
Pillhead2007 - 21.03.2014
In C, a
char is an integer type used to store character data, typically 1 byte.
The value stored in i is
0x80 a hexidecimal constant that is equal to 128 string character
or new string[128]; will do