#include<stdio.h>
#include<conio.h>
int main(){
clrscr();
FILE *fp;
char c;
fp = fopen(__FILE__,"r");
do{
c= getc(fp);
putchar(c);
}
while(c!=EOF);
fclose(fp);
getch();
return 0;
}
For all C lovers and geeks
Designed by WPart.org, Blogger templates by Blog and Web.
interesting...
thanks buddy!!