Answers for "strcmp meaning"

C
6

strcmp

return
	>0 if first string is large
    <0 if first string is short
     0 if strings are equal
    
int strcmp ( const char * str1, const char * str2 );
Posted by: Guest on May-27-2021

Code answers related to "C"

Browse Popular Code Answers by Language