關於在系統下 compiler程式的方法 - Linux

Harry avatar
By Harry
at 2010-09-29T20:11

Table of Contents

目前用VMWARE 灌了fedora

起因是有課程 老師叫我們在linux系統下

跑一個程式

程式如下

int main()
{
pid_t pid;
/* fork another process */
pid = fork();
if (pid < 0) { /* error occurred */
fprintf(stderr, "Fork Failed");
exit(-1);
}
else if (pid == 0) { /* child process */
execlp("/bin/ls", "ls", NULL);
}
else { /* parent process */
/* parent will wait for the child to complete */
wait (NULL);
printf ("Child Complete");
exit(0);
}
}


但是程式要寫在哪邊 用終端機去compiler結果呢

我想好好學習linux系統

請問有大大可以指點一下嗎? 感恩.

--
Tags: Linux

All Comments

Megan avatar
By Megan
at 2010-10-02T18:26
google: linux editor compiler
Kyle avatar
By Kyle
at 2010-10-06T21:05
用vim寫用cc編譯
Callum avatar
By Callum
at 2010-10-10T02:13
鳥哥網站
Blanche avatar
By Blanche
at 2010-10-14T22:34
是用 "compiler" 去 "compile" 程式
Susan avatar
By Susan
at 2010-10-15T17:33
http://james803.pixnet.net/blog/post/6109841
Valerie avatar
By Valerie
at 2010-10-17T16:10
在虛擬機下編譯不是很慢嗎,在除錯時很讓人抓狂
Quanna avatar
By Quanna
at 2010-10-20T19:01
可是這樣應該要include一些東西說
Isabella avatar
By Isabella
at 2010-10-22T23:36
這種小程式編譯應該不用花到3秒鐘才是
Ophelia avatar
By Ophelia
at 2010-10-24T09:53
原po確實有漏一些include, 看到錯誤再去修正吧 XD
Harry avatar
By Harry
at 2010-10-28T15:22
其實在vmware編譯不會特別慢,以前修課的時候意外發現
用cygwin編譯還比在vmware上編譯來得久,不知道原因
Lily avatar
By Lily
at 2010-11-02T11:34
缺的函式貼去Google查要include什麼檔案吧.....
Elvira avatar
By Elvira
at 2010-11-04T01:09
我是已經執行出結果了。
Agnes avatar
By Agnes
at 2010-11-06T03:04
OS嗎?XD

想要推廣openoffice嗎?但是要低調…

Caroline avatar
By Caroline
at 2010-09-29T17:16
剛剛用openoffice寫了一篇報告,但是拿到別台電腦上用word開,格式就會跑掉… 但是…我字體、段落、目錄、標題都設定好了…不想再東改西改了…於是 去下載了windows版的openoffice版裝到別台電腦上面,打開~哇~格式完全不會跑掉耶 於是我想到…如果我用odt格式的話,要給別人看文件或者是 ...

不好意思,問一個很粗淺的問題

Olive avatar
By Olive
at 2010-09-29T16:51
請問 [rootatas40 ~] 和 [rootatas40 /] 有什麼差別呢?? 後面那個是指 /root的目錄下嗎? 那請問前面呢?  - ...

有軟體可以從 windows 去 tail linux上的檔案嗎?

Edith avatar
By Edith
at 2010-09-29T16:27
或者是從 linux tail windows 的檔案 因為我想把所有的 log 都導到一台電腦去監看 有這種軟體嗎? - ...

Ubuntu 快速開機調校的心得

Kristin avatar
By Kristin
at 2010-09-29T14:31
: 推 fleurami:我設定好了ureadhead開機還是30秒..真希望能進步一些~ 09/25 17:42 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ureadahead的作用,是把即定的開機程序加速,如果「更快」開機有意義,那就 要試著探索開機過程所有必要 ...

wine無法執行程式

Skylar DavisLinda avatar
By Skylar DavisLinda
at 2010-09-29T13:10
大家好, 剛剛我要用wine來安裝遊戲的時候, 出現這個視窗: http://0rz.tw/a5ovO 然後程式就無法執行了, 請問該如何解決? 話說這已經不是第一次了, 每次在電腦上要執行.exe程式的時候都會被擋下來, 除非是移到隨身碟上才會執行, 請問這是怎麼一回事? - ...