What is the output of the following problem ?

			  		

Loading

โœช 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;
}

A. 5
B. 4
C. 12345678
D. Compilation Error