自己写的一个函数嵌套:
#include<stdio.h>
#define PRAISE "starting now:"
void one_three(); //函数声明
void two(); //函数声明
int main(){
printf("%s\n",PRAISE);
one_three(); //调用one_three函数
printf("done!\n");//主函数中打印最后一句
}
void one_three(){ //在one_three函数中嵌套two()函数
printf("one\n");
two(); //调用two()函数
printf("three\n");
}
void two(){
printf("two\n");
}
|