Tagged Questions
Quine is a program that prints itself
39
votes
17answers
2k views
Function which returns itself
As a purely academic exercise (read "because I have no life"), I'm trying to write a function f which accepts another function g, executes g for its side effect, and returns itself.
So I have this:
...
14
votes
11answers
779 views
What are quines? Any specific purpose to have them?
I came across this term - Quine (also called self-reproducing programs). Just wanted to know more on it. How does one write a quine and are they used anywhere or they are just an exercise for fun?
...
12
votes
10answers
2k views
How to write a self reproducing code (prints the source on exec)?
I have seen a lot of C/C++ based solutions to this problem where we have to write a program that upon execution prints its own source.
some solutions --
...
11
votes
3answers
488 views
Is it possible to create a quine in every turing-complete language?
I just wanted to know if it is 100% possible, if my language is turing-complete, to write a program in it that prints itself out (of course not using a file reading function)
So if the language just ...
11
votes
9answers
2k views
Can a program output a copy of itself
I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this?
I do not accept the "empty ...
8
votes
3answers
1k views
Shortest Ruby Quine [closed]
Just finished reading this blog post: http://www.skorks.com/2010/03/an-interview-question-that-prints-out-its-own-source-code-in-ruby/
In it, the author argues the case for using a quine as an ...
7
votes
5answers
183 views
Constructing quines (self-reproducing functions) in R
Has anyone constructed a quine ("A program that generates a copy of its own source text as its complete output": http://www.nyx.net/~gthompso/quine.htm) in R? (The [quine] tag pulls up lots of ...
7
votes
1answer
235 views
Zip-file that contains nothing but itself?
Just out of curiosity, does there exist a valid zip-file (according to format spec) that, contains nothing but itself?
Put another way, does the function implemented by unzip have a fix-point?
Can I ...
7
votes
7answers
754 views
Programs that reproduces itself
Is it possible to make a Java program that prints its source code to a new file, and compiles it, and runs the compiled program?
6
votes
1answer
131 views
Self reproducing program
main(a){printf(a="main(a){printf(a=%c%s%c,34,a,34);}",34,a,34);}
How it is reproducing itself after compilation? What is the role of writing 34 in printf function
Platform GCC UBUNTU 10.04
6
votes
3answers
267 views
is it possible to write a program which prints its own source code utilizing a “sequence-generating-function”
is it possible to write a program which prints its own source code utilizing a "sequence-generating-function"?
what i call a sequence-generating-function is simply a function which returns a value ...
5
votes
2answers
293 views
Is it possible to write a Java printf statement that prints the statement itself?
Is it possible to have a Java printf statement, whose output is the statement itself?
Some snippet to illustrate:
// attempt #1
public class Main {
public static void main(String[] args) {
...
5
votes
4answers
318 views
Any idea about constructing a higher order Quine program?
Here is a special Haskell program which outputs a Python program that outputs a Ruby program that outputs the original Haskell program (from ...
4
votes
3answers
368 views
How could a quine in my programming language look?
I have created a turing-complete programming language (already proven) so it must be possible to write a quine for it, right?
But all quines I know store their source code in a string and then ...
3
votes
1answer
47 views
What is the “trick” to writing a Quine?
I read Ken Thompson's classic paper Reflections on Trusting Trust in which he prompts users to write a Quine as an introduction to his argument (highly recommended read).
A quine is a computer ...
3
votes
1answer
178 views
Is it possible to create an HTML quine?
Per the title, is it possible to create a (non-trivial) quine in HTML?
My definition of an HTML quine:
A non-trivial HTML quine is one that is not null and uses at least one HTML tag, under the ...
3
votes
1answer
97 views
The missing quines: Visual Basic (for Applications)
Today I surfed some random geek-stuff articles on wikipedia to get my daily dose of useless knowledge. I stumbled accross quines, which are programs that print their own source-code. I found that a ...
3
votes
1answer
151 views
How does this superb quine work?
Another SO question mentions a fantastic quine by Yusuke Endoh. A quine is a computer program which produces a copy of its own source code as its only output; this one does it with a twist. A ...
3
votes
4answers
330 views
Can you write a simple weekly reminder using a (ba)?sh script quine?
I need to set myself a reminder to attend a weekly meeting. The trouble with my company's standard reminder tool is that when it runs under wine, it pops up on an off-screen virtual desktop.
I ...
3
votes
2answers
1k views
The shortest program that prints its own source code in C#
I need (preferrably the shortest) program that prints its own source code in C#.
I will post it here when I finish it, but if you already have a link your help will be greatly appreciated.
I have ...
2
votes
0answers
61 views
How to write a quine while keeping the code DRY? [closed]
A quine is a program that prints its own source code without opening itself from the filesystem.
Here is an example of such a quine in C#:
class Q{static void Main(){var s="class Q{{static void ...
2
votes
3answers
168 views
program that prints itself, how does it work?
I came across a program that prints itself on this site, i.e. it prints the program code.
The program code is:
#include <stdio.h>
char *program = "#include <stdio.h>%cchar *program = ...
2
votes
4answers
89 views
Techniques to implement quines
A few years back I was thinking about ways to make a program that prints its own source code and I came up with these two approaches:
the program prints the .c or .cpp file based upon the executable ...
2
votes
2answers
309 views
shortest python quine?
_='_=%r;print _%%_';print _%_
is this the shortest possible python quine, or can it be done better? (not counting the trivial 'empty' program). it seems to improve on all the entries on The Quine ...
2
votes
4answers
138 views
Is it possible to access the source code of a python script passed to python on standard in?
This is a bit of a random question that is more out of curiosity than any specific need.
Is it possible to write some python code that will print some stuff out, including the source code itself, ...
2
votes
3answers
108 views
Language features helpful for writing quines (self-printing programs)?
OK, for those who have never encountered the term, a quine is a "self-replicating" computer program. To be more specific, one which - upon execution - produces a copy of its own source code as its ...
2
votes
2answers
302 views
Is this a valid quine?
def start(fileName):
fileReader = open(fileName)
for row in fileReader:
print row,
if __name__ == "__main__":
import sys
if len(sys.argv) <= 1:
print "usage quine /path/to/file"
...
2
votes
2answers
393 views
C++ Template Quine
It is known that C++ templates are turing complete. As such it should be possible to output a quine that is essentially rendered at compile time. Does anyone know if such a quine has been written ...
2
votes
1answer
297 views
C program that prints out another C program in Japanese
There was a C program written for a contest that was formatted in ASCII art as a Japanese character. When compiled and ran it printed out another program formatted in a different Japanese character, ...
1
vote
2answers
37 views
program to reproduce itself and be useful — not a quine
I have a program which performs a useful task. Now I want to produce the plain-text source code when the compiled executable runs, in addition to performing the original task. This is not a quine, but ...
1
vote
1answer
50 views
What to do Quine McCluskey Minterm having zero
What to do zero minter in Quine McCluskey algorithm ?
e.g Sigma (0,1,3) is the input
Then do we have to ignore first zero minterm while finding Prime Implicants or we don't care about zero. i.e. it's ...
1
vote
1answer
92 views
Coding a Quine in J
Today in Computer Science, my friend walked in with an interesting thought, that being a Quine. After looking it up on Wikipedia, we saw lots of examples for more mainstream languages, but nothing for ...
1
vote
3answers
208 views
quine problem without main()
hii guyss..
i went through all sort of quine problem...but my task was to get quine problem without main(),and loops are also forbidden...
without loop code is easy one...but please help me out with ...
1
vote
1answer
90 views
On compilation of The Qlobe
I don't know ruby at all,but while reading some another blog I came across this beautiful piece of work The Qlobe.
But I am a windows vista user and I don't have ruby installed in my system,but I am ...
1
vote
1answer
138 views
quine (self-producing) SQL query
This is a very interesting wiki article about programs that print their own source code without any access to physical source file (in the filesystem). Examples in the articles include C and Scheme ...
1
vote
3answers
257 views
A puzzle - a program printing its own source
Blast from the past. This is one of the puzzles from my early days:
Can you write a method (a function) which when called outputs its own source - literally including all the quotes, indentations, ...
1
vote
3answers
533 views
C# Quine Problem
I am trying to understand how this piece of self-replicating code works (found here), but the problem is I can't get it to run as-is:
class c {
static void Main(){
string s = "class ...
0
votes
2answers
89 views
How can I write code to show itself [closed]
How can I write a code to show itself (print code to console) using standard C++ only without any external library?
0
votes
2answers
251 views
C++: Self-reproducing program? (Last problem in “Accelerated C++”)
I've completed every exercise in Accelerated C++, however I am now questioning my solution to the last one.
The question reads:
Write a self-reproducing program. Such
a program is one that ...
0
votes
2answers
231 views
Ruby: Print source code
Recently I heard about something called Quine. But my definition of it is a bit unclear.
I believe that you can print your own Ruby file's source code without using __FILE__? Is that possible? I ...
0
votes
1answer
55 views
Is the reflection namespace a building block for writing a quine in C#?
Do I need to use reflection to write a quine program for C#?
I read elsewhere - quine that opening the source file from disk is "cheating"
So I guess using .net reflector and/or opening the source ...
0
votes
3answers
126 views
How to Reverse Quine?
i have written a C programme which prints itself n times, but i can't get how to reverse print the same n times.E.g, if the sample programme is :
hello
then the required output should be "olleh" ...
0
votes
3answers
172 views
Quine Confusion.What actually does quine prints?
Does a quine print the ACTUAL code of the program i.e not obfuscated or does it print the obfuscated program?
0
votes
2answers
112 views
Javascript: Execute and Quine at the same time
I have a bizarre need here, and I am unsure of it's feasibility. I can only think how I would do it using threads (To create another thread that performs a Quine function along side a thread running ...
0
votes
7answers
457 views
How to output the code itself? [closed]
How many ways are there to let the code output itself?
For example, write the code below,
public class Test
{
public static void main(String[] args)
{
// some code
}
}
to output ...