C语言中strcmp函数返回值问题 C语⾔中strcmp函数返回值问题 关于strcmp这个函数标准时这样规定的:int strcmp ( const char * str1, const char * str2 );Compare two strings Compares the C string str1 to the C string str2.This function starts comparing the first character of each string. If they...
百度试题 结果1 题目在C语言中,以下函数中,不返回值的是()。 A. printf B. getchar C. scanf D. strcmp 相关知识点: 试题来源: 解析 A 反馈 收藏
标准只是规定三个值:小于零,零,大于零。具体是什么值编译器自己定的,所以编程时候判断小于等于大于,不能判断是否等于1或者-1