blob: f3da6bc7460a72ba1f9fe357ded4c232e9114601 [file] [log] [blame]
#include <stdio.h>
#include <string.h>
int main() {
FILE *handle = fopen("test", "wb");
fputs("hello from file!", handle);
fclose(handle);
handle = fopen("test", "r");
char str[256] = {};
fgets(str, 255, handle);
printf("%s\n", str);
return strcmp(str, "hello from file!");
}