// two_func.cpp : 定义控制台应用程序的入口点。
//
/* two_func.c -- 在一个文件中使用两个函数 */
/*
时间:2018年05月30日 22:53:38
代码:程序清单2.3_two_func.c_《C Primer Plus》P25
目的:在一个文件中使用两个函数,了解函数使用的位置
*/
#include "stdafx.h"
void butler(void); /* ISO/ANSI C 函数原型 */
int _tmain(int argc, _TCHAR* argv[])
{
printf("I will summon the butler function.\n");
butler();
printf("Yes. Bring me some tea and writeable CD-ROMS.\n");
getchar();
return 0;
}
void butler(void) /* 函数定义的开始 */
{
printf("You rang, sir?\n");
}
/*
在VS2010中运行结果:
---------------------------------------------
I will summon the butler function.
You rang, sir?
Yes. Bring me some tea and writeable CD-ROMS.
---------------------------------------------
*/
原文地址:http://blog.51cto.com/13555061/2122234