#include <stdio.h> int main() { char s[15] = "INTERVIEW"; char *ptr = strrchr(s, 'R'); printf("%c\n", *(++ptr)); }
V
Previous Question Next Question
Your comments will be displayed only after manual approval.