Self writing program and long string assignment in C

AI Thread Summary
The discussion revolves around creating a self-replicating C program, often referred to as a "quine." The initial proposal involves splitting the program's text into two parts and printing them in a specific sequence to achieve self-replication. A key challenge identified is how to store multiline text in a single string without exceeding line limits, with the participant initially attempting to use `strcpy` but encountering issues with long text. The conversation highlights the importance of "line continuation," which can be achieved in C++ using a backslash followed by a newline. References to quines and examples from Wikipedia are mentioned, indicating a realization that the original approach may not work due to limitations in how `printf` handles special characters and escape sequences. The participant acknowledges the need for a more refined understanding of how to construct the program effectively.
Lojzek
Messages
246
Reaction score
1
I would like to write a C program that writes itself to the screen (without reading from disk).
My idea is to assign text to a string S, split it into two parts S1 and S2 and then write each part twice. If S1 is made equal to program part before text definition and S2 equal to program part after, then the program would write S1S1S2S2, which would be equal to the whole program.

However I don't know how to put a text into the string S. I tried to use strcpy, but it does not work if the text is too long for a single line. Is there a way to store a several line long text into a string without spliting the text (the whole text should be written inside a single "").
 
Technology news on Phys.org
How is the text entered into the program? Is it by human input?
 
Yes, text should be typed directly into the source code. Of course it would be much easier if it would be read from a file, but then this task would not be interesting. The tricky part is that any character added to the text is simultaneously added to the whole program, so we must find a way to output more information that we explicitly define.
 
Yeah it's probably quine. Apparently I misread the first line of the OP.
 
Thanks for the answers (and sorry for not checking for similar posts on this forum). I read the example on wikipedia and now understand how this program can be constructed.
However my first idea about printing S1S1S2S2 would not work: I forgot that printf does not print all characters in a quotation (for example \ used for line continuation or before special characters).
 
Back
Top