标签: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