void main() {
if("a" == "a")
printf("Yes, equal");
else
printf("No, not equal");
}
Why is the output No, not equal?
|
What you are comparing are the two memory addresses for the different strings, which are stored in different locations. Doing so essentially looks like this:
Use the following code to compare two string values:
Additionally, When you're comparing two character values (which are not pointers), it is a numeric comparison. For example:
|
|||||||||||||||||||||
|
|
According in C99(Section 6.4.5/6)
So in this case it is unspecified whether both Check out the output on gcc here |
|||
|
|
|
I'm a bit late to the party, but I'm going to answer anyway; technically the same bits, but from a bit different perspective (C parlance below): In C, the expression However, in C, the same way you cannot pass arrays to functions by value - or assign values to them (after initialization) - there is no overloaded operator
If the
you are actually comparing the addresses of first characters in two unnamed arrays. According to the C standard, the comparison may yield either true or false (i.e. 1 or 0) - As others have pointed out, to compare "c strings" (i.e. strings terminated with a null character) you use the convenience function
|
||||
|
Because they are 2 separate Use |
|||||||
|
|
Simply put, C has no built-in string comparison operator. It cannot compare strings this way. Instead, strings are compared using standard library routines such as strcmp() or by writing code to loop through each character in the string. In C, a string of text in double quotes returns a pointer to the string. Your example is comparing the pointers, which apparently do not match in your setup. But it is not comparing the strings themselves. |
||||
|
|
|
Pointers. The first The second If you're using a 32-bit compiler, I'd expect |
|||||||||||||
|
|
You're comparing two memory address, so the result is not always going to be true. Did you try |
|||
|
|
|
Some compilers have 'merge strings' option that you can use to force all constant strings to have the same address. If you would use that, |
|||
|
|
|
this question sets very good trail of explanation for all the beginers.... as everybody above explained about , why you getting such output. now if you want your prog. To print "yes equal" then either use
or
in C characters are 1 byte short integer....... |
||||
|
|
|
if comparision between character is always in single quote, e.g.
and C can't support string comparision like It's done with |
||||
|
|
|
This guy does not use variables. Instead, he uses temporarily text arrays:
does not work of course, is that you do not compare variables.
then you could compare Maybe you shouldn't forget to use
|
||||
|
|
void main??? Ew... – Paul R Jan 30 '11 at 15:59