02.02.2011, 14:47
Wait, I\'m a bit confused about char-arrays.. since one byte can hold values from 0-255 (which means it can hold all characters), does this mean I can replace almost all cell-arrays to char-arrays?
So basically this
can be replaced with this..
So basically this
pawn Code:
new str[64];
format(str, 64, "%s %d %d", "abcdefghijklmnopqrstuvwxyz", 255, 12345);

pawn Code:
new str[64 char];
format(str, 64, "%s %d %d", "abcdefghijklmnopqrstuvwxyz", 255, 12345);