プログラムの何が問題になっていますか?
#include<stdlib.h>
#include<stdio.h>
#include<fcntl.h>
main( )
{
char * buf="robot.c";
char c;int i=0;
FILE*fp=fopen(buf,"r");
if(!fp)
printf("open error\n");
while(1)
{
//printf("size%c\n",*fp->_IO_read_ptr);
//while((c=getc(fp))>0)
c=getc(fp);
printf("%c",c);
//getc(fp);
//printf("new size%c\n",*fp->_IO_read_end);
for(;i<1000000000;i++);
}
}