怎样利用c语言编写一个程序在一个字符串数组中查找一个指定的字符并输出他第一次
怎样利用c语言编写一个程序在一个字符串数组中查找一个指定的字符并输出他第一次
日期:2018-03-14 12:33:09 人气:1
//---------------------------------------------------------------------------
#include
int search(const char *a,const char b)
{
int i;
for (i = 0; a[i]; i++)
if (a[i]==b) return i;
return -1;
}
int main(int argc, char* argv[])