[Solved] c++ objected oriented dictionary program [closed]
This excerpt of the error message is quite clear: In function `Dictionary::Dictionary()’: Dictionary.cpp: multiple definition of `Dictionary::Dictionary()’ main.cpp: first defined here You are defining the constructor of the Dictionary class twice – once in Dictionary.cpp and then again in Main.cpp. It is almost as if you are defining the constructor in the header file but … Read more