Answers for "argument of type "const char *" is incompatible with parameter of type "char *""

0

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);
Posted by: Guest on July-06-2021

Code answers related to "argument of type "const char *" is incompatible with parameter of type "char *""

Browse Popular Code Answers by Language