01.04.2015, 17:12
Quote:
Код:
new Input[5] = {a,b,c,d,e}; new Str[sizeof(Input)] = Input; Input[0] = "a" Input[1] = "b" Input = "abcde" Why to copy that you already have? |
new Input = {'a','b','c','d','\0'};
print(Input);
EDIT:Oops sorry, even you were criticizing that :P