色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

c語(yǔ)言中strcmp能否用于中文?

當(dāng)然可以了。

例如:

#include<stdio.h>

#include<string.h>

voidmain()

{

charstr1[100]={"編程語(yǔ)言"},str2[100]={"編程語(yǔ)言"},str3[100]={"編程語(yǔ)言學(xué)習(xí)"};

if(strcmp(str1,str2))printf("兩字符串不一致。\n");

elseprintf("兩字符串完全一致。\n");

if(strcmp(str2,str3))printf("兩字符串不一致。\n");

elseprintf("兩字符串完全一致。\n");

}