求大神指点,为什么程序无法编译?
#include"stdio.h"#include"conio.h"
#include"stdlib.h"
void main()
{ int a,b,c;
randomize();
a=random(100);
b=random(100);/*产生100以内随机数a,b*/
printf("%d+%d=?",a,b);/*列出题目*/
scanf("%d",&c);/*输入答案*/
c==(a+b)?printf("right!"):printf("wrong!");/*判断答案是否正确*/
getch();
}
是哪里错了嘛?编译器是dev-c++,语言是C,但是在win-TC下也无法运行。