Programa C para encontrar el tamaño de un archivo
Dado un archivo de texto, encuentre su tamaño en bytes. Ejemplos: Input : file_name = «a.txt» Let «a.txt» contains «geeks» Output : 6 Bytes There are 5 bytes for 5 characters then an extra byte for end of file. Input : file_name = «a.txt» Let «a.txt» contains «geeks for geeks» Output : 16 Bytes La … Continue reading «Programa C para encontrar el tamaño de un archivo»