Skip to content
Courses
DSA to Development
Machine Learning & Data Science
Generative AI & ChatGPT
Become AWS Certified
DSA Courses
Data Structure & Algorithm(C++/JAVA)
Data Structure & Algorithm(Python)
Data Structure & Algorithm(JavaScript)
Programming Languages
CPP
Java
Python
JavaScript
C
All Courses
Tutorials
Python
Python Tutorial
Python Programs
Python Quiz
Python Projects
Python Interview Questions
Python Data Structures
Java
Java Tutorial
Java Collections
Java 8 Tutorial
Java Programs
Java Quiz
Java Projects
Java Interview Questions
Advanced Java
Programming Languages
JavaScript
C++
R Tutorial
SQL
PHP
C#
C
Scala
Perl
Go Language
Kotlin
Interview Corner
System Design Tutorial
Company Preparation
Top Topics
Practice Company Questions
Interview Experiences
Experienced Interviews
Internship Interviews
Competitive Programming
Multiple Choice Quizzes
Aptitude for Placements
Computer Science Subjects
Operating System
DBMS
Computer Networks
Engineering Mathematics
Computer Organization and Architecture
Theory of Computation
Compiler Design
Digital Logic
Software Engineering
DevOps and Linux
DevOps Tutorial
GIT
AWS
Docker
Kubernetes
Microsoft Azure Tutorial
Google Cloud Platform
Linux Tutorial
Software Testing
Software Testing Tutorial
Software Engineering Tutorial
Testing Interview Questions
Jira
Databases
DBMS Tutorial
SQL Tutorial
PostgreSQL Tutorial
MongoDB Tutorial
SQL Interview Questions
MySQL Interview Questions
PL/SQL Interview Questions
Android
Android Tutorial
Android Studio Tutorial
Kotlin For Android
Android Projects
Android Interview Questions
6 Weeks of Android App Development
Excel
MS Excel Tutorial
Introduction to MS Excel
Data Analysis in Excel
Basic Excel Formulas & Functions
Data Analysis in Advanced Excel
Workbooks
Statistical Functions
Data Visualization in Excel
Pivot Tables in Excel
Excel Spreadsheets in Python
Basic Excel Shortcuts
Mathematics
Number System
Algebra
Linear Algebra
Trigonometry
Set Theory
Statistics
Probability
Geometry
Mensuration
Logarithms
Calculus
DSA
DSA Tutorial
Practice
Practice Coding Problems
Problem of the Day
GfG SDE Sheet
Competitive Programming
Company Wise SDE Sheets
Facebook SDE Sheet
Amazon SDE Sheet
Apple SDE Sheet
Netflix SDE Sheet
Google SDE Sheet
Top Interview Questions
Puzzles
All Puzzles
Top 100 Puzzles Asked In Interviews
Top 20 Puzzles Commonly Asked During SDE Interviews
Data Science
Python Tutorial
R Tutorial
Machine Learning
Data Science using Python
Data Science using R
Data Science Packages
Pandas Tutorial
NumPy Tutorial
Data Visualization
Python Data Visualization Tutorial
Data Visualization with R
Data Analysis
Data Analysis with Python
Data Analysis with R
Deep Learning
NLP Tutorial
Web Tech
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
PHP Tutorial
ReactJS Tutorial
NodeJS Tutorial
Bootstrap Tutorial
Typescript
Web Development Using Python
Django Tutorial
Flask Tutorial
Postman
Github
Cheat Sheets
HTML Cheat Sheet
CSS Cheat Sheet
JavaScript Cheat Sheet
React Cheat Sheet
Angular Cheat Sheet
jQuery Cheat Sheet
Bootstrap Cheat Sheet
Learn Complete Web Development
Trending Now
DSA
Web Tech
Foundational Courses
Data Science
Practice Problem
Python
Machine Learning
JavaScript
System Design
Django
DevOps Tutorial
Java
C
C++
ReactJS
NodeJS
CP Live
Aptitude
Puzzles
Projects
Sign In
▲
Similar Topics
DSA
22.3k+ articles
C++
4.1k+ articles
C++ Programs
2.5k+ articles
C Language
1.8k+ articles
Project
1k+ articles
C Programs
810+ articles
C Quiz
280+ articles
C-Functions
97 articles
cpp-file-handling
57 articles
File Handling
29 articles
C-File Handling
48 posts
Popular Articles
Recent Articles
C Program to Read Content of a File
Last Updated: 10 January 2025
In C, reading the contents of a file involves opening the file, reading its data, and then processing or displaying the data.ExampleInput: F
...read more
C Language
C-File Handling
C Programs
Bookshop management system using file handling
Last Updated: 08 June 2022
The task is to build the bookshop management system using file handling in C++ that helps to keep track of all the book records in a file. B
...read more
Project
Technical Scripter
C++
C-File Handling
File Handling
C++ Programs
Technical Scripter 2020
Error Handling During File Operations in C
Last Updated: 14 January 2025
File operations are a common task in C programming, but they can encounter various errors that need to be handled gracefully. Proper error h
...read more
cpp-file-handling
C Language
C++
C-File Handling
File Handling
C Programs
C++ Programs
C Error Handling Programs
Similar Topics
DSA
22.3k+ articles
C++
4.1k+ articles
C++ Programs
2.5k+ articles
C Language
1.8k+ articles
Project
1k+ articles
C Programs
810+ articles
C Quiz
280+ articles
C-Functions
97+ articles
cpp-file-handling
57+ articles
File Handling
29+ articles
Relational Database from CSV Files in C
Last Updated: 02 November 2023
In C programming, using arrays and string for data storage at run time which is volatile and gets memory in RAM. But to store data permanent
...read more
Articles
Advanced Data Structure
Project
C Language
C-File Handling
File Handling
C Programs
CSV
DSA
C fopen() Function
Last Updated: 10 January 2025
In C, the fopen() function is used to open a file in the specified mode. The function returns a file pointer (FILE *) which is used to perfo
...read more
C Language
C-Functions
C-File Handling
C Program to count the Number of Characters in a File
Last Updated: 29 May 2019
Counting the number of characters is important because almost all the text boxes that rely on user input have certain limitations on the num
...read more
C Language
C-File Handling
C fread() Function
Last Updated: 17 September 2024
The C fread() is a standard library function used to read the given amount of data from a file stream. Defined inside stdio.h, the fread() f
...read more
C Language
C-File Handling
File Handling
C Program to find size of a File
Last Updated: 28 April 2018
Given a text file, find its size in bytes.Examples:Input : file_name = "a.txt" Let "a.txt" contains "geeks"Output : 6 BytesThere ar
...read more
cpp-file-handling
C Language
C++
C-File Handling
C Programs
What is data type of FILE in C ?
Last Updated: 26 May 2022
Prerequisite : Basics of File Handling In C language, while file handling is done a word FILE is used. What is FILE? ExampleFILE *fp1, *fp2;
...read more
C Language
C-File Handling
fgets() in C
Last Updated: 14 January 2025
In C, fgets() is a built-in function that reads the given number of characters of a line from input stream and stores it into the specified
...read more
C Language
misc
C-File Handling
Basics of File Handling in C
Last Updated: 10 January 2025
File handling in C is the process in which we create, open, read, write, and close operations on a file. C language provides different funct
...read more
C Language
C-File Handling
Read/Write Structure From/to a File in C
Last Updated: 10 January 2025
For writing in the file, it is easy to write string or int to file using fprintf and putc, but you might have faced difficulty when writing
...read more
C Language
C-File Handling
fseek() in C/C++ with example
Last Updated: 06 June 2023
fseek() is used to move the file pointer associated with a given file to a specific position.Syntax of fseek()The fseek() syntax is:int fsee
...read more
CPP-Library
C Language
C++
C-File Handling
C-Library
fseek() vs rewind() in C
Last Updated: 07 January 2025
In C, the functions fseek() and rewind() helps in manipulating the position of the pointer in the opened file but serve different purposes a
...read more
GFacts
secure-coding
C Language
C-File Handling
EOF, getc() and feof() in C
Last Updated: 06 January 2025
In this article, we will discuss the EOF, getc() function and feof() function in C.What is EOF?In C,EOF is a constant macro defined in the s
...read more
C Language
C-File Handling
1
2
3
4
>>
Last
1
2
3
4
>>
Last
1
2
3
4
>>
Last
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !