所以,我试图在我的电话簿实验室中删除链接列表的所有条目,它正在读取一个我不知道如何修复的错误。错误是读取“从类型'int'分配给类型char [50]时不兼容的类型。”
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct phonebook{
char first_name[70];
char last_name[50];
char phone_num[50];
}entry; //TypeDef to modify structure name
void addFriend(entry *, int *); //function prototype to add a friend
void dltFriend(entry *, int *, int);
void showBook(entry *, int *);
void alphaList(entry*, int*);
void findNum(entry*, int*);
void randSelect(entry*, int*);
void dltAll(entry*,int*);
void dltAll(entry*phonebook, int*count){
int i;
for(i=0; i< *count; i++)
{
do{
phonebook[i].first_name = '\0';
phonebook[i].last_name = '\0';
phonebook[i].phone_num = '\0';
break;
}
while (i <= *count);
}
printf("\nAll contacts deleted\n");
system("pause");
}