Tagged Questions

The strncmp function is a string comparison function found in languages like C and C++. In contrast with strcmp, the strncmp function takes a third argument denoting the maximum length of the strings. This is used to prevent out of bounds errors.

learn more… | top users | synonyms

4
votes
2answers
43 views

Why do these two programs give different outputs in VC++2008?

Why do these two programs give different outputs in VC++2008? After all, the same strings are compared. strcmp__usage.c #include <stdio.h> #include <string.h> main() { char ...
0
votes
2answers
67 views

Why is my strcmp always returning true?

I'm trying to compare user text input from an iphone app with the text in a static array I have declared. It is always returning "true", even when the text is different. After doing the strncmp, I ...