12345678910



Question 1: For the following statements will arr[3] and ptr[3] fetch the same character?
char arr[] = "JavaTpoint";
char *ptr = "JavaTpoint";

1. Yes
2. No