字符串的题目,看看谁做错了。
程序代码:main()
{
if ( "abc" == "abc" )
{
printf("The two are the same.\n");
}
else
{
printf("The two are not the same.\n");
}
}
提问: 程序的结果是什么?请从下面给出的答案中选择 ( 1 或 2 ):
1.The two are the same. 2.The two are not the same.
摘抄自《c_study》









