#include
using namespace std;
int strcomp(char *s1,char *s2)
{
for(;*s1!='\0' || *s2;s1++,s2++)
if (*s1!=*s2)
break;
return *s1-*s2;
}
void main()
{
char str1[]="computer",str2[]="compu111";
if (strcomp(str1,str2)>0)
cout<<"str1>str2"<
cout<<"str1==str2"<
cout<<"str1