下述语句中,在字符串s1和s2相等时显示“they are Equal”的是( )。 .

admin2020-10-26  29

问题 下述语句中,在字符串s1和s2相等时显示“they are Equal”的是(    )。  .

选项 A、if(*s1==*s2)
  puts("they are Equal");
B、if(!strcmp(s1,s2))
   puts("they are Equal");
C、if(s1==s2)
  Puts("they are Equal");
D、if(strcmp(s1,s2))
   puts("they are Equal");

答案B

解析 字符串比较不能用两个等号(==)来进行比较,应使用strcmp(s1,s2)函数来比较。strcmp(s1,s2)函数的功能是:当字符串s1和s2相等时,返回值为0,因此,当表达式!strcmp(s1,s2)==1时,条件成立,执行后面的语句,输出thev are Equal。
转载请注明原文地址:https://kaotiyun.com/show/4C3p777K
0

随机试题
最新回复(0)