我想知道为什么这个东西无论输入什么都只执行对的条件语句?
#include "stdio.h"void main()
{
int result;
printf ("who is the person my love the most?\n");
scanf("%s",&result);
if (result="jhf")
{printf("Right!!!");}
else
{printf("She is not my love");}
}
就是这样 无论我输入啥子内容 都输出right,请问错在什么地方了?
如果实在错得离谱 请帮帮俺重写一次 谢谢各位大神啊 3Q
[ 本帖最后由 zhuerlei 于 2014-3-22 16:13 编辑 ]