我要做的是通过往末尾添加节点来建立链表,然后在输出,但是有问题,谁帮我看一下#include <stdio.h>#include <stdlib.h>struct am{ char name; struct am *th;};struct am *add(struct am *head){ int i=0; char array={'...
阅读全文
2008
08-31