What does this mean
#1

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?
Reply
#2

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)