Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
strcmp compare the strings. it is more like following java / php code: if (a > b) return 1 else if (a < b) return -1 else return 0 however, C++ compiller is smart enought and it optimizes codes like those: if (strcmp(a, b) == 0) ... if (strcmp(a, b) …
The End.