我是这个论坛的新手,刚刚开始学习C.我正在阅读的书要我编译所编写的代码。我有一个文件“cards.c”,我在Mac上,安装了Xcode,从Apple下载了gcc并安装了它。
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.4.0
Thread model: posix
当我输入:
gcc cards.c -o cards
我明白了:
clang: error: no such file or directory: 'cards.c'
clang: error: no input files
我曾尝试过Xcode下载来安装Xcode的命令行工具,它没有显示在那里,也许我有更新的版本?
我无法弄清楚如何编译这个,关于我做错了什么想法?
cards.c文件是否需要位于某个特定文件夹中?