Tagged Questions

6
votes
10answers
371 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? …
6
votes
10answers
1k 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 -- …
5
votes
8answers
331 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 …
3
votes
2answers
444 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
2answers
130 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 …
0
votes
3answers
110 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
93 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 …
0
votes
7answers
292 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 …
-1
votes
1answer
75 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, …