#include int main () { char my_string[] = "Hello"; printf("third letter in the string is %c\n", *(my_string + 2)); return 0; }