我试图从给定字符的出现中断开一个字符串。我正在使用 strpbrk 函数。但我得到这个错误
21 G:\My Programs\C\horse.cpp invalid conversion from `char' to `const char*'
我使用的代码如下
char horses[100], h[1];
char *brokenstring;
h[0] = 'H';
brokenstring = strpbrk (horses,h[0]);
我在使用 strpbrk 函数的行中收到此错误。请帮帮我。