我写的没问题吧

来源:5-1 Linux C 动态数据结构-静态链表

江户川柯南_qq

2018-11-29 11:41

#include <stdio.h>

struct weapon{
    int price;
    int atk;
    struct weapon *next;
};

void print_link_table(struct weapon *w)
{
    printf("thie gun's attributes:\n");
    printf("    price=%d\n",w->price);
    printf("    atk=%d\n",w->atk);
    if((w->next)==NULL)
        return;
    printf("print next gun'infomation:\n");
    print_link_table(w->next);
}

int main()
{
    struct weapon a,b,c,*head;
    a.price=100;
    a.atk=100;
    b.price=200;
    b.atk=200;
    c.price=300;
    c.atk=300;
    head=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    print_link_table(head);
    return 0;
}


写回答 关注

1回答

  • 简宏伟
    2018-12-01 11:33:13

    看着应该是对的

Linux C语言结构体

C语言的深入,帮助小伙伴们进一步的理解C语言,赶紧看过来

118294 学习 · 162 问题

查看课程

相似问题