C Program to Write a String into a File

Written: August 15, 2026

File output starts with fopen in write mode, a successful FILE*, then fputs/fprintf, then fclose.

This walkthrough keeps the logic small and readable so you can type it, run it, and then change one input at a time to see what happens.

What you will build

You will prompt for a string, open output.txt for writing, store the string, and close the file.

  • Read a line into a buffer
  • fopen(“output.txt”, “w”)
  • Check for NULL
  • fputs the string and fclose

Working C example

#include <stdio.h>

int main(void) {
    char s[256];
    FILE *fp;
    printf("Enter text: ");
    if (!fgets(s, sizeof s, stdin)) return 1;
    fp = fopen("output.txt", "w");
    if (!fp) {
        printf("Could not open file\n");
        return 1;
    }
    fputs(s, fp);
    fclose(fp);
    printf("Wrote output.txt\n");
    return 0;
}

Advertisement

How the logic works

Read the program top to bottom: includes and main first, then the statements that change variables, then the print that proves the result.

If your output looks wrong, print the variables before and after the critical lines. That single habit catches most beginner bugs faster than rewriting the whole file.

Always check fopen. On failure, printing a clear error beats silently continuing with a NULL pointer.

Advertisement

Common mistakes

Forgetting a semicolon, using the wrong format specifier in printf/scanf, and mixing up assignment (=) with comparison (==) are the usual culprits.

Compile with warnings enabled (`gcc -Wall`) so the compiler points at risky casts and unused variables before you chase them by hand.

Try this next

Change the sample inputs, add a second test case, and briefly note what stayed the same. Teaching yourself with tiny experiments sticks better than copying a longer program you never run.

When you can explain every line without looking, you are ready for the next exercise in the series.

Advertisement

Previous Article

C Program to Reverse a Number

Next Article

JavaScript Function Declaration vs Function Expression

Write a Comment

Leave a Comment

Your email address will not be published. Required fields are marked *

Subscribe to our Newsletter

Subscribe to our email newsletter to get the latest posts delivered right to your email.
Pure inspiration, zero spam ✨