#include <stdio.h>
#include <string.h>
int main() {
char myStr[] = "Hello World";
char *myPtr = strchr(myStr, 'W');
if (myPtr != NULL) {
printf("%s", myPtr);
}
return 0;