Posts
 
Reputation
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
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for rugae

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) …

Member Avatar for Nikolay_2
0
4K

The End.