求一个CFREE的专家
我使用cfree5.0编译一个c程序,但是调试的时候报错,说是不可执行文件,生成一个LIB文件,这是问什么啊,下面是我的程序#include
int mian(void)
{
float weight;
float value;
printf("are you worth your weight in rhodium? \n");
printf("lets check it out.\n");
printf("please enter your weight in pounds:");
scanf("%f", &weight);
value=770 * weight * 14.5833;
printf("your weight in rhodium is worth %f \n",value);
return 0;
}