win10支持gacc吗

2025-05-09 02:47:18
推荐回答(1个)
回答1:

int inthestr(char *s,char ch)
{
while(*s!='\0'){
if(*s==ch)
return 1;
s++;
}
return 0;
}