Welcome to the Template Paradise of Informative Error Messages! :D
Sorry, guys, I couldn't resist.
Change your IDE. Dev-Cpp is ancient and broken, and does not print all the messages.
Use Eclipse CDT or IntelliJ IDEA with a proper plugin. Works great for me.
You can also use Code::Blocks but it is not as feature rich.
The error is saying that you can't copy arrays this way:
1 2
char a[10],b[10];
b=a;
I assume Conference::operator=() does something like that in its body to copy the title member. I recommend using an std::string instead.
Alternatively, you could use strncpy().