24.07.2016, 10:05
forexample you format this string:
After that you format another string in the same variable:
Actually what it will do is replace "Its me K0P" with "Hello"
If you want to join 2 or more strings,use strcat(); function
Код:
format(string, sizeof(string), "Hello\n");
Код:
format(string, sizeof(string), "Its me K0P");
If you want to join 2 or more strings,use strcat(); function