#include int main(int argc,char *argv[]) { FILE * f; char buf[80]; f = fopen("fgd.c","r"); fgets(buf,80,f); printf("%s",buf); return 0; }