C语言字符串操作函数中,memcat,memcmp等和strcat,strcmp等功能都一样...
strcat,strcmp只能操作存储字符串的内存空间 memcmp可以操作任意数据类型的内存空间 我们就拿memcmp和strcmp来对比:int memcmp(const void *buf1, const void *buf2, unsigned int count);\/\/可以看到,他的前两个参数,内存中的数据类型是void,你可以强制转成任意的数据类型 extern int strcmp(const c...