A-A+

下列语句中 在字符串s1和s2相等时显示 hey are Equal的是()。A.if(

2022-08-05 23:40:12 问答库 阅读 173 次

问题详情

下列语句中,在字符串s1和s2相等时显示"they are Equal"的是()。
A.if(*s1==*s2)
B.if(!strcmp(s1,s2)) puts("they are Equal"); puts("they are Equal");
C.if(s1==s2)
D.if(strcmp(s1,s2)) Puts("they are Equal"); puts("they are Equal");

参考答案

正确答案:B
解析:字符串比较不能用两个等于号(=)来进行比较,应使用函数strcmp(s1,s2)来比较。函数 strcmp(s1,s2)的功能:当字符串s1和s2相等时,返回值为0。因此,当表达式!strcmp(s1,s2)=1时,条件成立,执行后面的语句,输出they are Equal。

考点:字符串,语句