/data/user/0/coding.yu.ccompiler.new/ 11 files/default.c:8:19: error: expected ;,'' or ')' before '&' token void OutPut(LINE *&head) /
2020年06月22日 07点06分
#include <string.h> #
include typedef struct line { char *data; struct line *next; }LINE; //创建链表,向里面输入文本数据 void OutPut(LINE *&head)
2020年06月22日 07点06分