(Program)
a. Write a program that stores the string Hooray for All of Us in an array named strng. Use the declaration strng[] = "Hooray for All of Us";, which ensures that the end-of-string escape sequence \0 is included in the array. Display the characters in the array by changing the address in a pointer called messPt. Use a for statement in your program
b. Modify the program written in Exercise 3a to use the while statement whileƒ (*messPt++ != '\0')
c. Modify the program written in Exercise 3a to start the display with the word All.