解釋C語言中結構指標的動態記憶體分配
結構指標儲存整個結構的地址。
該結構用於建立複雜的結構,比如連結串列、樹、圖等等。
結構的成員可以透過一個特殊的運算子——箭頭符號(->)訪問。
宣告
以下是C語言中結構指標的宣告 −
struct tagname *ptr;
例如:struct student *s;
訪問
以下是訪問結構指標的解釋。
Ptr-> membername;
例如 − s->sno, s->sname, s->marks;
例子
以下是C程式,解釋了C程式設計中結構的動態記憶體分配 −
#include <stdio.h> #include <stdlib.h> struct person { int age; float weight; char name[30]; }; int main(){ struct person *ptr; int i, n; printf("Enter the number of persons: "); scanf("%d", &n); // allocating memory for n numbers of struct person ptr = (struct person*) malloc(n * sizeof(struct person)); for(i = 0; i < n; ++i){ printf("Enter name and age respectively: "); // To access members of 1st struct person, // ptr->name and ptr->age is used // To access members of 2nd struct person, // (ptr+1)->name and (ptr+1)->age is used scanf("%s %d", (ptr+i)->name, &(ptr+i)->age); } printf("Displaying Information:
"); for(i = 0; i < n; ++i) printf("Name: %s\tAge: %d
", (ptr+i)->name, (ptr+i)->age); return 0; }
輸出
當上文程式執行時,它產生如下結果 −
Enter the number of persons: 1 Enter name and age respectively: bhanu 24 Displaying Information: Name: bhanu Age: 24
例子2
考慮另一個有關指標和結構的例子,其中,給出了一個展示指標和結構的C程式。
#include<stdio.h> //Declaring outer and inter structures// struct Manager{ char Name[15]; int Age; char Gender; float Level; char Role[50]; char temp; }m[20]; void main(){ //Declaring variable for For loop and pointer variable// int i; struct Manager *p; //Defining Pointer// p=&m; //Reading User I/p// for (i=1;i<3;i++){//Declaring function to accept 2 manager's data// printf("Enter the Name of manager %d : ",i); gets(p->Name); printf("Enter the Age of manager %d : ",i); scanf("%d",&p->Age); scanf("%c",&p->temp);//Clearing Buffer// printf("Enter the Gender of manager %d : ",i); scanf("%c",&p->Gender); //scanf("%c",&p->temp);//Clearing Buffer// printf("Enter the level of manager %d : ",i); scanf("%f",&p->Level); scanf("%c",&p->temp);//Clearing Buffer// printf("Enter the role of manager %d : ",i); gets(p->Role); p++; } //Defining Pointer one more time to print output// p=&m; //Printing O/p// for (i=1;i<3;i++){ printf("The Name of Manager %d is : %s
",i,p->Name); printf("The Age of Manager %d is : %d
",i,p->Age); printf("The Gender of Manager %d is : %c
",i,p->Gender); printf("The Level of Manager %d is : %f
",i,p->Level); printf("The Role of Manager %d is : %s
",i,p->Role); p++; } }
輸出
當上文程式執行時,它產生如下結果 −
Enter the Name of manager 1 : Hari Enter the Age of manager 1 : 55 Enter the Gender of manager 1 : M Enter the level of manager 1 : 2 Enter the role of manager 1 : Senior Enter the Name of manager 2 : Bob Enter the Age of manager 2 : 60 Enter the Gender of manager 2 : M Enter the level of manager 2 : 1 Enter the role of manager 2 : CEO The Name of Manager 1 is : Hari The Age of Manager 1 is : 55 The Gender of Manager 1 is : M The Level of Manager 1 is : 2.000000 The Role of Manager 1 is : Senior The Name of Manager 2 is : Bob The Age of Manager 2 is : 60 The Gender of Manager 2 is : M The Level of Manager 2 is : 1.000000 The Role of Manager 2 is : CEO
廣告