#include <stdio.h>
void one_three();
void two();
void main()
{
printf("starting now;\n");
one_three();
printf("done!\n");
}
void one_three()
{
printf("one\n");
two();
printf("three\n");
}
void two()
{
printf("two\n");
}
//函数的嵌套
编写一个程序,程序中要调用名为one_three()的函数。该甘薯要在一行中显示单词“one”,再调用two()函数,然后在另一行中显示单词“three”。函数two应该能在一行中显示单词“two”,main()函数应该在调用one_three()函数之前显示短语“starting now:”,函数调用之后要显示done!“