26.06.2013, 17:48
pawn Код:
new str_hello[16] = "hello";
new str_world[16] = "world";
strins(str_world, str_hello[2], 0);
// The char in str_hello[2] is a lowercase L.
// I want the lowercase L to be inserted at the start of str_world,
// making it become "lworld". But it inserts the entire string AFTER L.
print(str_world);
// Output: 'lloworld'

