Quine : A code that produces it’s own code as output .
these type of codes are calle Quines… and here is a link containg many single liners .
under linux
int main()
{
system("cat filename.c");
}
In turbo c ( Windows )
void main()
{
char ch;
FILE *fp;
fp=fopen(__FILE__,"r");
while(!feof(fp))
{
ch=getc(fp);
printf("%c",ch);
}
}








