- A+
所属分类:C语言
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> void butler(void); /* ANSI/ISO C函数原型 */ int main(void) { printf("I will summon the butler function.\n"); butler(); /* ANSI/ISO C函数调用 */ printf("Yes,Bring me some tea and writeable DVDS.\n"); return 0; } void butler(void) { /* 函数定义 */ printf("You rang, sir?\n"); } |
void butler(void); 第一个void表明函数没有返回值,第二个void代表函数没有参数。

我的微信
分享学习和工作过程中总结出来的一些经验与技巧,关注前端设计与网站制作。
如果认为本文对您有所帮助请赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏