Diego Trazzi

520
reputation
2
5
9

Still hanging there...

include

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); }