Why are output:s1 and s2 not equal?
Code:
main()
{
char *s1="Hello";
char *s2="Hello";
if(s1==s2)
printf("s1 and s2 are equal");
else
printf("s1 and s2 are not equal");
}
Comment