MSalters, , , . , GetLeftChild() GetRightChild() NULL, , m_dummy NULL, . - , NULL, .
MSalters , Microsoft MSDN , func2() - func(). . .
int func(int x)
{
if (x > 1)
return func(x - 1);
else
return x;
}
void func2(void)
{
func(10);
}
void main()
{
func2();
}
source
share