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
#include <stdio.h>
#include <stdlib.h>
#pragma pack(1)
// BAD VERSION - DO NOT TRY THIS (UNLESS YOU WANT BUGS AND HORROR)

typedef struct {
    char*        bdg;
    unsigned int number;
} Room;

int main(int argc, char* argv[]) {
    const char* filename = "d.binary";
    FILE* fp = fopen(filename, "w");
    if(fp == NULL) {
        fprintf(stderr, "Could not open %s\n", filename);
        return EXIT_FAILURE;
    }

    Room room = { .bdg = "EE", .number = 170 };
    printf("{.bdg = \"%s\", .number = %d }\n", room.bdg, room.number);

    fwrite(&room, sizeof(room), 1, fp);

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

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