This line is wrong:
keyw(str);
Instead of that you need:
keyw(&str);
The function keyw(char *p) needs a pointer or an address.
solved Conversion not valid from char to const char*
This line is wrong:
keyw(str);
Instead of that you need:
keyw(&str);
The function keyw(char *p) needs a pointer or an address.
solved Conversion not valid from char to const char*