C语言 return没有返回值.

#include <stdio.h>
#include
<stdlib.h>

void foo(void)
{
printf(
"into the foo function\n");
return;//结束子函数调用,返回主函数
printf("out the foo function\n");
}

int main()
{
foo();
printf(
"Hello world!\n");
return 0;
}

运行结果:

posted @ 2011-05-01 08:22  hnrainll  阅读(1780)  评论(0编辑  收藏  举报