C Primer Plus阅读学习(一)
C 语言概述 多个函数实例 /* two_ func. c -- 一个文件中包含两个函数 */ #include <stdio.h> void butler(void); /* ANSI/ISO C函数原型 */ int main(void) { printf("I will summon the butler function.\ n"); butler(); …
阅读全文
C 语言概述 多个函数实例 /* two_ func. c -- 一个文件中包含两个函数 */ #include <stdio.h> void butler(void); /* ANSI/ISO C函数原型 */ int main(void) { printf("I will summon the butler function.\ n"); butler(); …