问答详情
源自:6-7 字符串与数组

帮我看看那里错了

#ingclude <stdio.h>
void say(char string[])
{
    printf("%s\n",string);
}

int main()
{
    char string[]="我在慕课网上学习IT技能!";
    say(string);
    return 0;
}

提问者:虫虫IQ 2015-02-28 20:36

个回答

  • _潇潇暮雨
    2015-02-28 20:49:30
    已采纳

    第一行#ingclude <stdio.h>错了。

  • 慕妹0627093
    2015-07-29 15:34:52

    也是6

  • 夏进牛奶
    2015-04-01 14:12:05

    include