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