โช Choose the correct option.
What is the output of the following problem ?
#include
int main()
{
int len=4;
char *st="12345678";
st = st + len;
printf("%c
",*st);
return 0;
}
#include
int main()
{
int len=4;
char *st="12345678";
st = st + len;
printf("%c
",*st);
return 0;
}