Examveda

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

A. l

B. o

C. e

D. Compilation error

Answer: Option B


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output