strcmp函数的两种实现

2019-04-15 17:04发布

摘自http://www.iteye.com/topic/790388#include int strcmp(const char *str1,const char *str2) { /* 注释以下的五行(while循环)可以简写为: * for(;(*str1==*str2)&&*str1!='