where to start, from where the end

weixin_34321977發表於2018-03-07

當進入一個全新世界的時候,面對世外桃源,我們總會不由自主地喊了一句 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

相關文章