码迷,mamicode.com
首页 > 其他好文 > 详细

函数与前向声明

时间:2014-10-07 20:26:14      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   io   使用   ar   for   sp   c   on   代码   

代码:

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

// 标准C风格使用前向声明(forward declaration)

// 函数funcA使用前向声明
// 函数funcB未使用前向声明

// 声明函数
void funcA(void);

// 声明并定义函数
void funcB(void) {
	// ...
}

int main(void) {

	// 调用函数
	funcA();
	funcB();

	return EXIT_SUCCESS;
}

// 定义函数
void funcA(void) {
	// ...
}


函数与前向声明

标签:style   io   使用   ar   for   sp   c   on   代码   

原文地址:http://my.oschina.net/Xwoder/blog/324658

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!