首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴fhh517的代码贴全部
#include <stdio.h>
void butler(void);//函数原型声明没错,关键是这个函数没加“;”,这是常识!
int main(void)
{
   printf("I will summon the butler function.\n");
   butler();
   printf("Yes,Bring me some tea and writeable CD-ROMS\n");
   return 0;

}

void butler(void)
......................
阅读全部 | 2014年11月29日 22:09
1
fhh517