Learn C

From LemonWiki共筆
Jump to navigation Jump to search

編譯C語言

installation[edit]

install gcc package of cygwin

compile[edit]

place all *.c to c:\cygwin\c

execute Cygwin Bash Shell

cd /c         #switch to the folder named c
cc filename.c #will compile filename.c, and generate a.exe)
./a.exe       #or ./a  will show the result

trouble?[edit]

How can I copy and paste into Cygwin console windows?

解決策略:開始 -> 所有程式 -> Cygwin -> Cygwin Bash Shell 按滑鼠右鍵 -> 內容 -> 選項分頁 -> 勾選快速編輯模式(Quick edit mode) Source: Cygwin copy and paste


got trouble

cc --help