Home Python C Language C ++ HTML 5 CSS Javascript Java Kotlin SQL DJango Bootstrap React.js R C# PHP ASP.Net Numpy Dart Pandas Digital Marketing

Read Files:

Reading files in C involves using the file handling functions provided by the standard I/O library. Here's a simple explanation with an example:

#include <stdio.h>

int main() {
FILE *filePointer; // Declare a file pointer
char buffer[100]; // Buffer to store read content

// Open file in read mode
filePointer = fopen("example.txt", "r");

// Check if file was successfully opened
if (filePointer == NULL) {
printf("Unable to open file.\n");
return 1; // Exit program with error
}

// Read content from the file using fgets() function
while (fgets(buffer, sizeof(buffer), filePointer) != NULL) {
printf("%s", buffer); // Print each line
}

// Close the file
fclose(filePointer);

return 0;
}

In this example

When you run this program, it will open the file named "example.txt" in the current directory (where the executable is located), read its content line by line, and print each line to the console.



Advertisement





Q3 Schools : India


Online Complier

HTML 5

Python

java

C++

C

JavaScript

Website Development

HTML

CSS

JavaScript

Python

SQL

Campus Learning

C

C#

java