试题详情

#include int streql(char *str1,char *str2) { while((*str1==*str2)&&(*str1)) { str1++; str2++; } return((*str1==NULL)&&(*str2==NULL)); } void main() { printf("%d",streql("abc","Abc")); } 程序的运行结果是 ( ) 。

A0

B1

C2

D3