C语言程序填空,定义一个函数compare 的功能是比较两个字符串是否相等,若相等则返回1,否则返回0;

int compare(char s[],char t[]){int i=0;while( && )i++;return ;}
2025-01-07 18:49:18
推荐回答(2个)
回答1:

#include
#include
using namespace std;
//-----------------------------------------------------
int compare(string str1,string str2)
{
if(str1==str2)
return 1;
else
return 0;
}
不要忘了#include头文件

回答2:

int compare(char s[],char t[])
{
int i=0;
while( s[i]&&t[i]&&s[i]==t[i] )
i++;
return s[i]==t[i] ;
}