07.11.2015, 17:44
Quote:
Код:
new Text[4]={"Nice"}; if I do this Код:
Text[4]={"Nice"}; error 032: array index out of bounds |
It should be:
PHP код:
new Text[5] = "Nice";
PHP код:
new Text[5] = {'N', 'i', 'c', 'e', '\0'};