如何编写没有 main() 的 quine 程序
我经历了各种各样的奎因问题,但我的任务是在没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果没有
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 amain()
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.
首先,如果没有
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 frommain()
function, withoutmain
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?
有 main() 声明,但没有定义。
There is main() declaration, but not definition.