2-8

作者: Y1ng2i | 来源:发表于2017-02-11 19:17 被阅读1次
    执行结果

    不要学我把函数写在主函数之前。。。

    #include <stdio.h>
    
    void one_three();
    void two();
    
    
    void one_three() {
        printf("one\n");
        two();
        printf("three\n");
    }
    
    void two(void) {
        printf("two\n");
    }
    
    int main(void) {
    
        printf("starting now:\n");
        one_three();
        printf("done!\n");
    }
    

    相关文章

      网友评论

          本文标题:2-8

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