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

参量与参数

时间:2014-10-07 23:02:14      阅读:189      评论:0      收藏:0      [点我收藏+]

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

代码:

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

// C99规定
// 对实际参数(actual argument)或者实际参量(actual parameter)使用术语参数(parameter)
// 对形式参数(formal argument)或者形式参量(formal argument)使用术语参量(argument)

void func(int);

int main(void) {

	int n = 10;

	// 参数:实际参数、实际参量
	func(n);

	return EXIT_SUCCESS;
}

// 参量:形式参数、形式参量
void func(int n) {
	// ...
}


参量与参数

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

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

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