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 name (app1 prints app1.cpp). but this will fail in case the .cpp file is located somewhere else.
  • the program makes "clever" use of strings (I forgot the source code of this), and prints itself.

Is there any other algorithm a program can use to print its own source code?

link|improve this question

By the way, they are called quines. – BoltClock Aug 22 '11 at 8:45
5  
Although the first method produces something that isn't a quine (at least, not according to the usual definition). – Steve Jessop Aug 22 '11 at 9:13
feedback

4 Answers

up vote 2 down vote accepted

I think your two cases cover all the options. Case (1) covers cases of the form "load the program source from an external device," while case (2) covers cases of the form "generate the program source programmatically." You could of course consider a hybrid approach like "read the first half of the program from a file and then generate the second half programmatically," but this doesn't seem any different from what you described above.

link|improve this answer
feedback

As Steve pointed out in comments case 1) is usually not considered a quine, probably becasue its essetially trivial to do in any language that can do file I/O

case 2) is what most people mean when they say quine, the 'clever use of strings' being the part you are showing off with.

in some languages there is a 3rd case (which is also not usually counted as a true quine as it is even more trivial than case 1). If a language allows a program with no statements in at all to be well formed then this 'empty' program will usual print nothing, which is of course the same as its source code. e.g. the TCL script:

will print:

;)

link|improve this answer
"probably becasue its essetially trivial" - that, plus the interesting thing about a quine is that it's a fixed point of the function that maps programs to their outputs. The function that maps a program together with the current state of a filesystem to the output of the program is less interesting to the kind of person who gets to define what "quine" means (Hofstadter), because the fixed-point program no longer needs to be able to manipulate source, it's just cat with a suitable filename. So it's not self-referencing, at least not beyond the trivial "knowing the filename of its source". – Steve Jessop Aug 22 '11 at 9:51
true though the 3rd case you could argue does meet the definition without the file system, though it is clearly vacuously true so also uninteresting. – jk. Aug 22 '11 at 9:57
agreed: that's a language that happens to have a trivial quine, as opposed to a definition of quine that's begging for trivial cases no matter what the language. There are also languages in which it's easy to create quines simply because you have access (via reflection or whatever) to the byte code or AST of the program. So you could easily output source equivalent to the source of this program (if not identical), and that output would be a quine. – Steve Jessop Aug 22 '11 at 10:11
@Steve: I was thinking of such, too. Would f := () -> f: in such a language be a quine? Invoking f() gives the result () -> f – Christopher Creutzig Aug 23 '11 at 14:48
feedback

A program need not be an "executable" with a particular "name", and the source code need not be in a "file" with a particular "name". These are all artifacts of modern operating systems, totally irrelevant to the job at hand.

link|improve this answer
that's what I had said in the question... LOL! – c0da Aug 24 '11 at 10:10
feedback
 char*f="char*f=%c%s%c;main()
 {printf(f,34,f,34,10);}%c";
 main(){printf(f,34,f,34,10);}

(in one line)

there are many codes like this in http://www.nyx.net/~gthompso/quine.htm

to me this is the best way: assign code to variable and use it repeatly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.