1#include<stdio.h>
2
3struct Student
4{
5 int *ptr; //Stores address of integer Variable
6 char *name; //Stores address of Character String
7}s1;
8
9int main()
10{
11
12int roll = 20;
13s1.ptr = &roll;
14s1.name = "Pritesh";
15
16printf("\nRoll Number of Student : %d",*s1.ptr);
17printf("\nName of Student : %s",s1.name);
18
19return(0);
20}
21