Quine in C language



//Quine - A self reproducing Program
//Quine is a program which prints a copy of its own as only the output.
//The interesting thing is that you are not allowed use open and print file of the program.
//this program prints the output without including its corresponding header file into program.
//program is written in c language

main(){
char* s="main(){ char* s=%c%s%c; printf(s,34,s,34); }";printf(s,34,s,34);}

Comments

Popular Posts