?? ??? ???? C ???????.
????
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
? ??? ?? ??? ???? C ????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

??? ??











?? ???? ?? ??? MAC ??? ??? ????? ??? ????? ??? ???? ???? ???? ? ?? ?????. ? ????? ?? ??? ?? ??? MAC ??? ?? ??? ?????. 1. ?? ???? ?? ??? ?????. ?? ???? ?? ??? ?? ???? ????? ?? ????? ???? ???? ? ???? ?? ??????. ?? ??? ?? ?? ???? ?? ??? ?? ??? ?? ????. Windows: ?? ????? ??(?? ???? "cmd" ??) ?? ??? ???? Enter? ????. wmicdisk

C#?? Array.IndexOf ??? ???? ??? ?? ??? ???? ????. C# ?????? ??? ?? ??? ???? ??? ?? ?? Array.IndexOf ??? ??? ? ????. Array.IndexOf ??? ??? ?? ?? ??? ??? ??? ?? ?? ??? ?? ???? ???? ?????. ??? ?? ? ??? -1? ?????. ??? Array.IndexOf ??? ???? ???? ??? ?? ??? ?? ?? ?? ?????.

iPhone?? ?? ??? ?? ??? ???? ?? iPhone ??? ????? ???? ??? ?? ? ??? ???. ?? iPhone ??? ????? ???? ??? ??? ??????, ??? ????, ??? ?? ? ??? ? ? ????. ?? ???? ?? ??? ??? iPhone? ???? ?? ???? ??? ?? ??? ???? ????. ?? iPhone ??? ?? ??? ?? ??? ???? ??? Apple ??? ???? ??? ? ????. ?? iPhone ??? ?? ????? ???? ??, ??, ????? ??? ?? ?? ?? ???? ?? ?? ?? ?????? ???. ??? ?? ??? ??? ?? ??? ??? ? ????.

??? ?? ????? ????? ???? ?? ??? ??? ??? ??? ?? ????? ?? ?? ???? ? ? ??? ?????. ??? ??? ????? ?? ?? ? ?????? ???? ?? ??? ????? ?? ???? ???? ???. ?? ????? ?? ??? ?? ??? ?? ????? ?? ? ?? ?? ??? ???? ??? ???? ? ? ???? ???? ? ??? ? ? ????. ???? ??? ?????? ????? ???? ??? ?????? ? ????? ? ?? ???? ??? ?????. ?? 1: Windows ???? ?? ???? ??? ?? ?? Windows ???

Apple? ?? ?? ?? ???? iPhone?? ?? ??? ??? ???? ????? ????? ?? ??? ? ????. ?? ??? ??? ???? ? ??? ????? ?? ?? ?? ??? ????? ??? ??? ??? ?? ?? ?? ?? ??? ????? ? ????. ???? iPhone?? ?? ??? ?? ???? ?? ??? ???, ? ????? ?? ?? ?? ???????. iPhone?? ?? ??? ?? ?? [4?? ??] ? ?? ???? iPhone?? ?? ??? ? ? ????. ?? 1? ???? ??? ? ?? ??????? ???? ? ??? ??? ? ????. ?? 2, 3, 4? ????? Find Finder? ??? iPhone? ??? ???

?? ? ??? ? ?, ? ? ?? ? ?? ?? C++? ??? ??? ???????. ? ?? ? ??? ????? ? ???? ??? ?? ?? ??? ????. ??? ?? ???? ??? ???? ?? ?? ?????. C++?? ? ??? ????? ???? ???? ???. ?? ??? ??? ??? ??? ?????. ???? ?? ?? ? ?? ??? ????(?: ??)? ?? ???? ?? ?? ?? ?? ??? ???? ? ??? ? ?? ?? ?? ??? ??? ????. ???? ??? ????? ?? ??? ??? ???? ?? ????? ??? ? ????. ???? ??? ?? ?? ??? ??? ??? ?????. ???? ???? C++?? ?? ???? ??, ???? ??? ???????.

?? ??? ??? ???? ????? ?? ???? ? ???? ?????. ? ??? ?? ??? ?????. ??? ? ?? ??? ??? ???? ??? ??? ?? ????. ? ??? stdio.h ????? ?? ??? ????. rename ??? ??? ??? ????. intrename(constchar*oldname,constchar*newname); rename() ??? ??? ? ?? ????? ?????. ??? oldname?? ?? ??? newname???. ? ????? ?? ??? ?? ??? ? ??? ???? ?? ??? ?? ??????. ?? ??? ????? ???? 0? ????, ??? ??? 0? ?? ??? ?????. ?? ??? ?? ?

????? ??? ???? ?? ?? ?? ????? ??? ??? ? ??? ?? ?????. ???? ?? ????, ASCII ?? ??? ???? ? ???? 1??? ??? ?????. ??? ???, ??, ????? ? ? ????. ?? ???? C++? ???? ??? ????? ????? ???? ??? ???????. isalpha() ?? ?? ??? ???? ????? ctype.h ?? ???? isalpha() ??? ??? ? ????. ??? ???? ?? ????? true? ????, ??? ??? false? ?????. ? ??? ???? ???? ?? ?? C++ ??? ???????. ??? ??? ??? ??? ????.
