我正在开发一个简单的'手机索引'项目。 我的项目是由:结构,数组,指针
组成的if've:
在索引中定义人员的结构:
和三个函数来创建用户,将它们添加到索引,显示索引:
这是我的代码:
// This is my structure definition
typedef struct
{
char fname[30];
char lname[30];
char phnum[14];
} PERS;
// Function prototypes
PERS * add_person(void);
PERS ** add_index(int );
void show_index(PERS **, int );
// Function implementation
PERS * add_person(void)
{
PERS * p = (PERS *) calloc(1,sizeof(PERS)); // Dynamic allocation.
printf(" First name : ");
scanf("%s", p->fname);
printf(" Last name : ");
scanf("%s", p->lname);
printf(" Phone number : ");
scanf("%s", p->phnum);
return p; // return a pointer to the structure PERS
}
PERS ** add_index(int nbr)
{
int i = 0;
PERS * r[nbr]; // an array of pointers to PERS structures.
while(i < nbr)
{
r[i] = add_person(); // populate the array with pointers to PERS
i++;
printf("\n");
}
return r; // return the array
}
void show_index(PERS **rep, int nbr) // recieve the array
{
int i = 0;
while(i < nbr)
{ // display its content
printf("\n");
printf(" %s \n", rep[i]->fname);
printf(" %s \n", rep[i]->lname);
printf(" %s \n", rep[i]->phnum);
i++;
}
}
当然还有主程序:
#include <stdio.h>
#include <stdlib.h>
#include "funcs.h"
int main()
{
PERS ** rep = add_index(3); // Create an index with three items
printf("\n\n");
show_index(rep,3);
printf("\n\n");
return 0;
}
这是我的意见:
First name : friend
Last name : name
Phone number : 4567234512
这是我得到的错误:
(null)
Segmentation fault (core dumped)
我已经尝试了几种解决方案,但它无法正常工作。
提前致谢。
答案 0 :(得分:1)
你知道的是什么!!您只需更改一行即可解决问题。
PERS **r= malloc(sizeof(PERS *) * nbr);
使用指向指针的指针并从函数中返回该值..