//C program that prints this code.
#include <stdio.h>

//Driver code
int main(void) 
{
    //We can append this code to any c program
    //such that it prints this code.
    char c;
    FILE *fp=fopen(__FILE__,"r");

    do
    {
        c=fgetc(fp);
        putchar(c);
    }
    while(c !=EOF);

    fclose(fp);
    return 0;
    
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: