MCQOPTIONS
What will be the output of the following C code..
What will be the output of the following C code?
#include int main() { char str[10] = "hello"; char *p = strrchr(str, 'l'); printf("%c n", *(++p)); }