這是基於C代碼:分割故障(核心轉儲),而週期
在這裏它的功能是:
#include <stdio.h>
#include <stdlib.h>
struct worker
{
char firstName;
char lastName;
char middleName;
int age;
float height;
};
void enterData();
void displayData();
void makeCalc();
struct worker *b;
int count;
int main(void)
{
enterData();
displayData();
makeCalc();
free(b);
return 0;
}
void enterData()
{
char firstName;
char lastName;
char middleName;
int age;
float height;
printf("Количество работников: \n");
scanf("%d", &count);
if(count <= 0){
exit(0);
}
b = (struct worker *)malloc(count*sizeof(struct worker));
for(int i = 0; i<count; i++){
printf("Введите имя, фамилию, отчестве, возраст и рост через пробел: \n");
scanf("%s%s%s%d%f", &firstName, &lastName, &middleName, &age, &height);
struct worker a = (struct worker) {firstName, lastName, middleName, age, height};
b[i] = a;
}
}
雖然這部分運行時,如果程序顯示Segmentation fault (core dumped)
:
for(int i = 0; i<count; i++){
printf("Enter name, surname and middle name: \n");
scanf("%s%s%s%d%f", &firstName, &lastName, &middleName, &age, &height);
struct worker a = (struct worker) {firstName, lastName, middleName, age, height};
b[i] = a;
可能是什麼原因呢?我是C新手;
P.S我使用在Ubuntu 12.04 GCC編譯器。和常見的文本編輯器。