20151017练习自定义函数调用

#include <stdio.h>
#include <windows.h>

int sayLove()
{
    printf("%s\n", "I Love China");
    return 0;
}

int dividLine()
{
    printf("%s\n", "*************");
    return 0;
}

int main()
{
    dividLine();
    sayLove();
    dividLine();
    system("pause");
    return 0;
}

posted on 2017-10-05 18:17  sunshineman1986  阅读(93)  评论(0)    收藏  举报

导航