//弹栈例子
void example(int x)
{
if(x == 0)
return;
example(x-1);`
printf("%d\n",x);
}
void main ()
{
example(5);
system("pause");
}
//弹栈例子
void example(int x)
{
if(x == 0)
return;
example(x-1);`
printf("%d\n",x);
}
void main ()
{
example(5);
system("pause");
}