美文网首页
初学C语言

初学C语言

作者: RedMushrooms | 来源:发表于2018-01-25 13:36 被阅读0次

    初学C语言——函数介绍(1)

    #include <stdio.h>

    void show() {

    printf("2323");

    }

    int main(int argc , const char * argv[]){

    printf("23");

    printf("\n");

    show ();

    printf("23");

    printf("\n");

    show ();

    printf("23");

    printf("\n");

    show ();

    return 0;

    }

    相关文章

      网友评论

          本文标题:初学C语言

          本文链接:https://www.haomeiwen.com/subject/hxrvaxtx.html