在C語言中,結構體是一種用戶自定義的數據類型,可以包含多個不同類型的數據成員。可以使用以下方法來使用結構體:
struct
關鍵字來定義結構體類型,并指定結構體的成員變量和類型。例如:struct Person {
char name[20];
int age;
float height;
};
struct Person p1;
.
)來訪問結構體的成員變量。例如:strcpy(p1.name, "John");
p1.age = 25;
p1.height = 1.75;
void printPerson(struct Person p) {
printf("Name: %s\n", p.name);
printf("Age: %d\n", p.age);
printf("Height: %.2f\n", p.height);
}
struct Person *ptr;
ptr = &p1;
printf("Name: %s\n", ptr->name);
printf("Age: %d\n", ptr->age);
printf("Height: %.2f\n", ptr->height);
這些是一些基本的結構體使用方法,可以幫助您在C語言中使用結構體。