发布网友 发布时间:2022-04-24 00:16
共1个回答
热心网友 时间:2023-05-05 01:33
比较字符可以直接使用==比较操作符,如:
char
c1='a',c2='b';
if(c1==c2)
printf("%c
is
same
as
%c.",c1,c2);
else
printf("%c
is
different
to
%c",c1,c2);
若是字符串,则需要使用字符串函数了,strcmp
char
s1[]="abc",s2[]="xyz";
if(strc...