inline C function in VC++ 2005 express# Programming - 葵花宝典
a*e
1 楼
What's wrong with the following code? Why can't it pass the compilation?
_inline int max (int a, int b)
{
if (a > b)
return a;
else
return b;
}
_inline int max (int a, int b)
{
if (a > b)
return a;
else
return b;
}