1. 程式人生 > >C語言打印 hello world

C語言打印 hello world

c

//打印 hello world
//標準的輸入輸出
#include <stdio.h>
int main(int argc, const char * argv[]) {
    //printf 函數
    printf("hello world!\n");
    return 0;
}


C語言打印 hello world