问答详情
源自:5-2 函数调用

自定义函数

#include <stdio.h>
int main()
{
    printf("%s\n", "*************");
    printf("%s\n", "I Love imooc");
    printf("%s\n", "*************");
    return 0;
}

感觉这样反而更简单

提问者:慕慕5622951 2018-06-03 17:04

个回答

  • EricGo101
    2019-05-05 22:46:25

    函数就是为了提高代码的复用性,现在还是无参函数,到后面有参函数时你就明白代码的复用性了

  • 梦回大秦
    2018-09-04 21:48:33

    函数调用,是为了可以分配工作

  • Agrema
    2018-06-08 17:19:38

    大工作量的话这样不方便