我的仰视30
2015-03-29 14:27
include <stdio.h>
/* 定义say函数 */
void say(char string[]) //数组参数应该怎么写呢?
{
printf("%s\n",string); //打印字符串
}
int main()
{
//定义字符串数组
char string[] = "我在慕课网上学习IT技能!";
say(string); //调用say函数输出字符串
return 0;
}
童鞋,有“同学代码"这功能的
C语言入门
926020 学习 · 20793 问题
相似问题