error: strcpy was not declared in this scope
Observations: #include <cstring> should introduce std::strcpy(). using namespace std; (as written in medico.h) introduces any identifiers from std:: into the global namespace. Aside from using namespace std; being somewhat clumsy once the application grows larger (as it introduces one hell of a lot of identifiers into the global namespace), and that you should never use … Read more