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?