如何使用 Dev C++ 编译 C 源文件。我认为它会自动执行此操作,但由于某种原因,它编译时出现了几个错误,我认为这是因为您必须对其进行更改才能编译 C 文件。
示例测试代码:
#include <stdio.h>
main ()
{ int i,j;
double x,x_plus_one();
char ch;
i = 0;
x = 0;
printf (" %f", x_plus_one(x));
printf (" %f", x);
j = resultof (i);
printf (" %d",j);
}
double x_plus_one(x)
double x;
{
x = x + 1;
return (x);
}
resultof (j)
int j;
{
return (2*j + 3);
}