What is output of the following program?
Void main()
{
Char *s[]={“abcd”, “efg”, “hijkl”};
Char **p[3]={s+2,s+1,s};
Char ***ptr=p;
Printf(“%s”, **++ptr+1);
}1
cd
2
fg
3
hijkl
4
ijkl
What is output of the following program?
Void main()
{
Char *s[]={“abcd”, “efg”, “hijkl”};
Char **p[3]={s+2,s+1,s};
Char ***ptr=p;
Printf(“%s”, **++ptr+1);
}