求大佬帮忙看看,在linux下的写的c,用gcc编译运行的,报的错是段错误(吐核)最近快被这个错误折磨死了...代码:include <stdio.h>#include <stdlib.h>struct Node{ int value; struct Node *next;};void headInsert(struct Node **, int);void printNode(struct Node *);...