1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include "clog.h"

int main(int argc, char* argv[]) {
    {
        log_yellow("OPEN file for writing (mode \"w\")\n");
        FILE* fp = fopen("a.txt", "w");  // "r" to read
                                         // "w" to write (create or overwrite if existing)
                                         // "a" to append (create or append to end if existing)

        log_yellow("WRITE to file\n");
        //fputc('A', stdout);
        fputc('A', fp);
        fputc('B', fp);
        fputc('C', fp);

        log_yellow("CLOSE file\n");
        fclose(fp);
    }
    {
        log_yellow("OPEN file for reading (mode \"r\")\n");
        FILE* fp = fopen("a.txt", "r");

        log_yellow("CLOSE file\n");
        fclose(fp);
    }

    return EXIT_SUCCESS;
}
/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.