ubuntu下c語言hello world

1.首先用vi編寫一個c語言程序文件,命令行輸入:vi helloworld.c,建立一個名叫"helloworld.c"的文件 2.在文件中輸入內容 #include <stdio.h> int main() {     printf("hello world!");     return 0; } 3.命令模式下輸入:wq,保存並退出 4.輸入gcc helloworld.c,編譯默認shen
相關文章
相關標籤/搜索