除了vc 6.0外还有什么编译器
除了vc 6.0外还有什么编译器(在网上下载turbo c 全有病毒,不敢用,谁提供个没毒的),教材是c语言程序设计,高等教育司出版的,99年第一版。用vc6.0出了如下错误:error C2065: 'max' : undeclared identifier
error C2065: 'x' : undeclared identifier
error C2065: 'y' : undeclared identifier
error C2065: 'z' : undeclared identifier
error C2447: missing function header (old-style formal list?)
源程序(照着书上打的):
#include<stdio.h>
main()
{int a,b,c,imax;
printf("please input a,b,c\n");
scanf("%d,%d,%d",&a,&b,&c);
imax=max(a,b,c);
printf("maximum=%d\n",imax);
}
int max(x,y,z);
int x,y,z;
{
int m;
if (x>y)
m=x;
else m=y;
if (m<z)
m=z;
return(m);
}