gpt4 book ai didi

c - C程序编译后没有这样的文件或目录错误

转载 作者:行者123 更新时间:2023-11-30 17:18:23 27 4
gpt4 key购买 nike

我刚刚开始学习 C,并且正在使用 Code::Blocks 和 GNU GCC 编译器。我刚刚创建了一个新项目,并尝试运行 main.c 文件。

构建并运行后我收到此错误:

sh: /Users/myname/Documents/c: No such file or directory

来自构建日志的消息:

Checking for existence: /Users/myname/Documents/c tut/learning/bin/Debug/learning
Executing: osascript -e 'tell app "Terminal"' -e 'activate' -e 'do script "/Applications/CodeBlocks.app/Contents/MacOS/cb_console_runner DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:. /Users/myname/Documents/c\ tut/learning/bin/Debug/learning "' -e 'end tell' (in /Users/myname/Documents/c tut/learning/.)
Process terminated with status 0 (0 minute(s), 1 second(s))

关于原因有什么建议吗?

最佳答案

要尝试使用 gcc 编译一个简单的程序并运行它,请在终端窗口的 bash 提示符下键入以下内容:

cat > myprog.c
main() {
printf("Hello world!\n");
}
^d
gcc -o myprog myprog.c
./myprog

注意“^d”表示同时按下CTRL键+D键

关于c - C程序编译后没有这样的文件或目录错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29190372/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com