如何在 Ubuntu 中的代码块中生成 .out?

发布于 2024-10-29 12:44:22 字数 397 浏览 1 评论 0原文

我刚刚转移到ubuntu。早些时候,我曾经在 Windows 的代码块中编写代码。使用它进行编译。但是从控制台运行 exe,如 abc.exe abc.exe abc.exe abc.exe abc.exe abc.exe 输入.in。讨厌再次给出输出&再次。在 Ubuntu 中我安装了 CodeBlocks for Ubuntu,但在 Linux 中它也会生成 .exe 和 .o,据我所知,它们在 Linux 中不起作用。 我也知道我必须像 ./abc.out < 一样运行输入.in 。所以现在我想要代码块生成.out。如果这不可能,请建议其他方法。

I have just shifted to ubuntu. Earlier I used to write my code in Code Blocks for windows. Compile using it. But running the exe from the console as in abc.exe < input.in. Hated giving output again & again. Following it in Ubuntu I installed CodeBlocks for Ubuntu but in linux as well it generates .exe and .o which do not works in linux according to my knowledge.
Also I know that I have to run like ./abc.out < input.in . So now I want code blocks to generate .out. If this is not possible please suggest Some other method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤 2024-11-05 12:44:22

如果我正确理解你的问题,你想知道如何在编译时命名可执行文件。如果是这样,您可以对 gcc(1) 使用 -o 标志:

$ cat hello.c
#include <stdio.h>

int main(int argc, char* argv[]) {
    printf("%s\n", "hello world!");
    return 0;
}
$ gcc -o hello hello.c
$ ./hello
hello world!
$ 

If I understood your question correctly, you want to know how to name an executable while compiling it. If so, you can use the -o <filename> flag to gcc(1):

$ cat hello.c
#include <stdio.h>

int main(int argc, char* argv[]) {
    printf("%s\n", "hello world!");
    return 0;
}
$ gcc -o hello hello.c
$ ./hello
hello world!
$ 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文