Comparing Strings with strcmp
and strncmp
Figure 22.24 compares three strings using strcmp
(lines 14–16) and strncmp
(lines 19–21). Function strcmp
compares its first string argument with its second string argument character by character. The function returns zero if the strings are equal, a negative value if the first string is less than the second string and a positive value if the first string is greater than the second ...
Get C++ How to Program, 10/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.