结构指针保存整个结构的地址。
这些主要用于创建复杂的数据结构,例如链表,树,图等。
可以使用称为箭头运算符(->)的特殊运算符来访问结构的成员。
以下是指向结构的指针的声明-
struct tagname *ptr;
例如,struct学生* s;
您可以使用以下命令访问结构的指针-
Ptr-> membername;
例如,s-> sno,s-> sname,s-> marks;
以下是指针结构的C程序-
#include<stdio.h> struct student{ int sno; char sname[30]; float marks; }; main ( ){ struct student s; struct student *st; printf("enter sno, sname, marks:"); scanf ("%d%s%f", & s.sno, s.sname, &s. marks); st = &s; printf ("details of the student are"); printf ("Number = %d\n", st ->sno); printf ("name = %s\n", st->sname); printf ("marks =%f\n", st ->marks); getch ( ); }输出结果
执行以上程序后,将产生以下结果-
enter sno, sname, marks:1 priya 34 details of the student areNumber = 1 name = priya marks =34.000000