Still hanging there...
int main(void){ FILE *fp= fopen("./about_me.bin", "r");
AboutMeNode *(&node);
while (!eof(fp)){ fread(node, sizeof(node), 1, fp); if (!feof(fp)) fprintf(stdout, "%c\t%x\n", node->data, node->next); } fclose(fp); }