最佳答案
void main() {
if("a" == "a")
printf("Yes, equal");
else
printf("No, not equal");
}
Why is the output No, not equal
?