如何编写没有 main() 的 quine 程序

发布于 2024-10-18 12:17:19 字数 150 浏览 6 评论 0原文

我经历了各种各样的奎因问题,但我的任务是在没有 main() 的情况下得到奎因问题,并且循环也被禁止。

没有循环,这很容易,但我不知道如何在没有 main() 的情况下编写一个循环。任何人都可以帮助我或为我提供链接吗?

I went through all sorts of quine problems, but my task was to get a quine problem without main(), and loops are also forbidden.

Without loop, it is easy, but I can't figure out how to write one without main(). Can anyone help me or provide me with a link?

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

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

发布评论

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

评论(3

伴我老 2024-10-25 12:17:19

如果没有 main() 函数,则无法创建(非独立式)C 程序。因此,在通常意义上,在没有 main() 的情况下用 C 创建 quine 是不可能的。

也就是说,根据您定义 quine 的方式,您可能能够构造一个无法编译的源文件,但其编译错误(在某个特定编译器上)是源文件的内容。

You cannot create a (non-freestanding) C program without a main() function. Thus, creating a quine in C without a main() is impossible in the usual sense.

That said, depending on how you define a quine, you might be able to construct a source file which fails to compile, but for which the compile error (on a certain specific compiler) is the contents of the source file.

梦萦几度 2024-10-25 12:17:19

首先,如果没有 main 函数,就不可能编写程序,因为编译器总是从 main() 函数开始执行,而没有main 函数链接器不会知道数据段的开始

是的,但是使用预处理器的一些技巧你可以做到这一点,但这不是一个好方法。

http://www.gohacking.com/2008/ 03/c-program-without-main-function.html

这可能对您有帮助。

也看看这里:

C 程序需要 main() 吗?< /a>

First thing its impossible to write program without main function because compiler always starts execution from main() function, without main function linker will not be aware of start of data segment.

Yeah but playing with some tricks with preprocessor you can do it, but this is not a good method to do that.

http://www.gohacking.com/2008/03/c-program-without-main-function.html

This might help you.

Take a look here too:

Is a main() required for a C program?

红墙和绿瓦 2024-10-25 12:17:19
#include <stdio.h>

int
foo(void) {
        printf("pong!\n");
        return 0;
}

int main() __attribute__((weak, alias("foo")));

有 main() 声明,但没有定义。

#include <stdio.h>

int
foo(void) {
        printf("pong!\n");
        return 0;
}

int main() __attribute__((weak, alias("foo")));

There is main() declaration, but not definition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文