Skip to content

Instantly share code, notes, and snippets.

View jjwest's full-sized avatar

Jonas Westlund jjwest

  • Stockholm, Sweden
View GitHub Profile
@jjwest
jjwest / main.c
Created December 27, 2018 20:31
C file io
#include <stdio.h>
#include <stdlib.h>
int main() {
const char *filename = "Hello.txt";
printf("In file %s\n", filename);
FILE *file = fopen(filename, "r");
fseek(file, 0, SEEK_END);
size_t len = ftell(file);