#include<iostream.h>
#include <string.h>
void main()
{
char *s1="Golden Global View";
char *s2="Golden global view";
// clear screen
if(!bcmp(s1,s2,7))
cout<<"0";
else
cout<<"2";
if(!bcmp(s1,s2,12))
cout<<"0";
else
cout<<"0";
}
我用vc 6.0编写,为什么bcmp这个函数不能用?请高手解释...
[此贴子已经被作者于2006-5-16 19:21:56编辑过]