1.) Declare an a char array called "string" with the null-terminated value "abcdefg" 2.) Create a character pointer to point to the first element in that array. 3.) Write a loop that adds one to each of the characters in the string. You must only use the pointer, not the array string, to reference elements in the string.