两字符串每个字符比较

#include <iostream>
#include <cstring>
using namespace std;
int main()
{
using namespace std;
char word[5]="?ate";

for(char ch='a';strcmp(word,"mate");ch++)
{
cout<<word<<endl;
word[0]=ch;
}
cout<<"After loop ends.word is "<<word<<endl;
return 0;
}

原文地址:https://www.cnblogs.com/xuyaoxiang/p/2935240.html