Tuesday 5 June 2018

TO display its own source code using __FILE__ using C program

#include <stdio.h>
int main() {
    FILE *fp;
    char c;
    fp = fopen(__FILE__,"r");
    do {
         c = getc(fp);
         putchar(c);
    }
    while(c != EOF);
    fclose(fp);
    return 0;
}

OUTPUT:-

No comments:

Post a Comment