I have a structure
struct tree { char name[9]; int count; }; when trying to define it in main
tree.name= "12345678"; There is an error
error C2440: =: невозможно преобразовать 'const char [9]' в 'char [9]' введите сюда код Assigned the same way using the symbols '1', '2', '3', etc.
error C2440: =: невозможно преобразовать 'char' в 'char [9]' Created a separate array of sizes [9] and assigned it, but there was an error
error C2059: синтаксическая ошибка: константа error C2106: =: левый операнд должен быть левосторонним значением How can I do everything to assign it and the program did not swear?
treeis a type, not a variable. - αλεχολυτ