當(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");
}