• 2021-04-14
    函数strcmp(char *s,char *t)功能是:
    当第1个串大于第二个串时,函数返回值大于零;
    当第1个串等于第二个串时,函数返回值为零;
    当第1个串小于第二个串时,函数返回值小于零;
    与strcmp功能相等的程序段是: