A structure pointer is a type of pointer that stores the address of a structure typed variable is called pointer to structure.
Note:
struct studentStruct
{
char name[10];
int roll;
int marks;
}student1;
struct studentStruct *ptr;
ptr = &student1;
Today's date is 17/18/2019.
Roll Number : 21 Marks of Student : 90 Press any key to continue