#include <stdio.h> #include<string.h> int main() { char str1[] = "India", chr = 'n'; char *chrpos; chrpos = strchr(str1, chr); if(chrpos) printf("%s", chrpos); return 0; }