A quine is a program which prints a copy of its own as the only output. A quine takes no input. Quines are named after the American mathematician and logician Willard Van Orman Quine (1908–2000). The interesting thing is you are not allowed to use open and then print file of the program.
To the best of our knowledge, below is the shortest quine in C.
main() { char *s= "main() { char *s=%c%s%c; printf(s,34,s,34); }" ; printf (s,34,s,34); } |
This program uses the printf function without including its corresponding header (#include
Following is a shorter version of the above program suggested by Narendra.
main(a){ printf (a= "main(a){printf(a=%c%s%c,34,a,34);}" ,34,a,34);} |
If you find a shorter C quine or you want to share quine in other programming languages, then please do write in the comment section.
Source:
http://en.wikipedia.org/wiki/Quine_%28computing%29
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.