C Tutorial/string.h/strcmp — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 13:32, 25 мая 2010

strcmp

Item Value Header file string.h Declaration int strcmp(const char *str1, const char *str2); Function lexicographically compares two strings Return returns an integer based on the outcome: Value Meaning < 0 str1 is less than str2 0 str1 is equal to str2 >0 str1 is greater than str2