美文网首页
where to start, from where the e

where to start, from where the e

作者: 一溪酒 | 来源:发表于2018-03-07 11:30 被阅读19次

    当进入一个全新世界的时候,面对世外桃源,我们总会不由自主地喊了一句 Hello world !

    #include <stdio.h>
    #include <stdlib.h>
    int main (int argc, char **argv) {
        printf("%s\n", "Hello world");
        exit(0);
    }
    

    当是时候离开这个世外桃源的时候,我们也得礼貌地前后呼应 Goodbye world !

    #include <stdio.h>
    #include <stdlib.h>
    int main (int argc, char **argv) {
        printf("%s\n", "Goodbye world");
        exit(0);
    }
    

    where to start, from where the end

    相关文章

      网友评论

          本文标题:where to start, from where the e

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