0
在繼續質疑之前,我是編程的百分百新手,而且我自己也是。 所以請回答我的問題,即使你認爲它看起來非常愚蠢。第一步學習C lang。與MAC
不知怎的,我設法成功安裝的命令行工具:
LazyRen:~ LazyRen$ xcode-select -p
/Applications/Xcode.app/Contents/Developer
LazyRen:~ LazyRen$ xcode-select --install
xcode-select: note: install requested for command line developer tools
LazyRen:~ LazyRen$ gcc
clang: error: no input files
但問題是,當我試圖建立與ST3它給了我
clang: error: no input files
[Finished in 0.0s with exit code 1]
[cmd: ['gcc', 'Hello C World!', '-o', 'Hello C World!']]
[dir: /Users/LazyRen/Library/Application Support/Sublime Text 3/Packages/User]
[path: /usr/bin:/bin:/usr/sbin:/sbin]
這最基本的代碼。 我只是不知道需要什麼樣的輸入文件。任何提示?
C程序通常寫成包含源代碼的文本文件,其文件名以'.c'結尾。你似乎試圖編譯一個名爲「Hello C World!」的文件,該文件不存在。嘗試將你的源代碼保存到像'hello.c'這樣的文件,然後編譯它。 – Useless
非常感謝你,我會馬上嘗試。 –
這個初學者指南應該讓你在路上(參見C世界中的Hello World):http://www.seas.gwu。edu /〜simhaweb/C/lectures/module1/module1.html – ken