C语言问题解答,我不知道哪里有问题
#define f(x) (x*x)main()
{
int a=6,b=2,c;
c=f(a)/f(b);
printf("%d\\n",c);
}
这个程序,在百度查typedef的含义时看到的,用创天中文VC++编译出错G:\C++\c语言工作室\Cpp1.cpp(6) : error C2065: 'printf' : undeclared identifier
G:\C++\c语言工作室\Cpp1.cpp(7) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.
求人解答愿意,本人C语言新手,还有帮忙解答下typedef的含义