标题:c语言中自定义函数函数名前为什么要加*,求解!
只看楼主
大桃子ds
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2018-5-7
结帖率:0
已结贴  问题点数:20 回复次数:1 
c语言中自定义函数函数名前为什么要加*,求解!
typedef struct
{
    char name[10];
    char num[8];
    int age;
    char sex[2];
    char body[5];
}student;

typedef struct node_link
{
    student info;
    struct node_link *next;
}node;
node *insert(node *head,student x,int position)
{
    node *p,*q;
    q=find(head,position);
    if(!q && position!=0)
        printf("无法查找到%d的节点,无法插入%d\n",position,x);
    else
    {
    p=(node*)malloc(sizeof(node));
    p->info=x;
    if(position==0)
    {
        p->next=head;
        head=p;
    }
    else
    {
        p->next=q->next;
        q->next=p;
    }
    return head;
    }
}比如这里定义的*insert()
搜索更多相关主题的帖子: 函数 node next head position 
2018-05-07 15:44
dzy123
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:5
帖 子:379
专家分:820
注 册:2013-4-18
得分:20 
返回结构体指针
2018-05-07 15:49



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-486730-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.060200 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved