C 언어 간단한 예제(파일 읽기 및 쓰기 8)

492 단어
#include <stdio.h>
main()
{
   FILE *fp;
   char filename[80];
   long length;
   printf("     :");
   gets(filename);
   //             
   fp=fopen(filename,"rb");
   if(fp==NULL)
      printf("file not found!
"); else { // fseek(fp,0L,SEEK_END); // ; length=ftell(fp); printf(" %1d
",length); fclose(fp); } }

좋은 웹페이지 즐겨찾기