Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Diego Trazzi

Diego Trazzi

Diego Trazzi has asked 1 questions and find answers to 0 problems.

Stats

5
EtPoint
0
Vote count
1
questions
0
answers

About

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

Diego Trazzi answers