type "_const char " is incompatible with parameter of type "char *
For those who are getting an error like argument of type "_const
char " is incompatible with parameter of type "char *, try replacing
int Save(int _key, char *file); with int Save(int _key, char const *file);