C语言问题 急急急
C语言中strcmp(tab[i],type,type0,5)是什么意思
[解决办法]
那得发C版去问.
[解决办法]
strcmp,是比较两个字符串。
[解决办法]
可能是笔误吧。
int strcmp( const char *string1, const char *string2 );
Return Value
The return value for each of these functions indicates the lexicographic relation of string1 to string2.
Value Relationship of string1 to string2
< 0 string1 less than string2
0 string1 identical to string2
> 0 string1 greater than string2