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