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

Write to Files:

Certainly! Writing to 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

// Open file in write mode (creates the file if it doesn't exist)
filePointer = fopen("example.txt", "w");

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

// Write content to the file
fprintf(filePointer, "This is line 1.\n");
fprintf(filePointer, "This is line 2.\n");
fprintf(filePointer, "This is line 3.\n");

// Close the file
fclose(filePointer);

printf("Content written to file successfully.\n");

return 0;
}

In this example

When you run this program, it will create a file named "example.txt" in the current directory (where the executable is located) and write the specified content to it. Each call to fprintf() writes a new line to the file.



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