কম্পিউটার

একটি ফাইলের আকার খুঁজে পেতে সি প্রোগ্রাম


এটি একটি ফাইলের আকার খুঁজে বের করার জন্য একটি সি প্রোগ্রাম৷

অ্যালগরিদম

Begin
   function findfileSize()
   Open a file pointer fp in read only mode.
   If fp is equals to null then
      Print “File not found” and return -1.
   Else count the file size.
      Close the file.
   Put the file pointer at the beginning of the file
   Declare a integer variable result and initialize it with the output of the ftell() function.
   Close file pointer fp.
   Return result.
End

উদাহরণ

#include <stdio.h>
int findfileSize(char f_n[]) {
   FILE* fp = fopen(f_n, "r"); // opening a file in read mode
   if (fp == NULL) // checking whether the file exists or not {
      printf("File Not Found!\n");
      return -1;
   }
   fseek(fp, 0L, SEEK_END);
   int res = ftell(fp); //counting the size of the file
   fclose(fp); //closing the file
   return res;
}
int main() {
   char f_n[] = { "b.txt" }; //file name is “b.txt” whose size is to be determined
   int result = findfileSize(f_n);
   if (result != -1)
   printf("Size of the file is %ld bytes \n", result); //printing the file size
   return 0;
}
প্রিন্ট করা

আউটপুট

Size of the file is 2649 bytes

  1. C++ এ দ্বিগুণ লিঙ্কযুক্ত তালিকার আকার খোঁজার প্রোগ্রাম

  2. পাইথনে k আকারের সাবলিস্টের সর্বোচ্চ মান খুঁজে বের করার প্রোগ্রাম

  3. পাইথনে k আকারের আভিধানিক দিক থেকে ক্ষুদ্রতম অনুক্রম খুঁজে বের করার প্রোগ্রাম

  4. পাইথনে k আকারের ক্রমবর্ধমান অনুক্রমের সংখ্যা খুঁজে বের করার জন্য প্রোগ্রাম