You can't assign directly to an array. For strings (char), you need to use strcpy. For other things, it's usually memcpy. Or in C++, we tend to use C++ constructs such as std::vector which allows us...