#include<>
main()
{
FILE *p;
p=fopen("filename","r");
if(p==null)exit(1);
while(!eof(p))
printf("%c",*p);
p++;
}
getche();