where to start, from where the end

当进入一个全新世界的时候,面对世外桃源,我们总会不由自主地喊了一句 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

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容