當然可以了。
例如:
#include<stdio.h>
#include<string.h>
voidmain()
{
charstr1[100]={"編程語言"},str2[100]={"編程語言"},str3[100]={"編程語言學習"};
if(strcmp(str1,str2))printf("兩字符串不一致。\n");
elseprintf("兩字符串完全一致。\n");
if(strcmp(str2,str3))printf("兩字符串不一致。\n");
elseprintf("兩字符串完全一致。\n");
}
上一篇英語錯題筆記應該怎么寫?
下一篇什么是快速排序?