#include<iostream. h>
#include<conio. h>
struct emp
{
char *name;
int id;
};
void main()
{
static struct emp e1 ={"A", 1},e2={"B",2},e3={"C",3};
struct emp(*array[ ])={&e1,&e2,&e3};
struct emp(* (*ptr)[3])=&array;
cout<<(**(*ptr+ 1)).name;
cout<<*(*ptr+ 1))->id);
getch();
}