关于遇到的不能理解的问题

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
void main()
{
int a=1,b=3,c=5;
if("c=a+b") printf("yes\n");
else printf("no\n");
system("pause");
}

img

为什么这个值输出是yes
因为我是初学者。

是if(c==a+b)

1楼写的很清楚了,查找问题,没有别的诀窍,细心是第一位的。