A group of integers stored in the memory is called an integer array. Similarly, a group of characters form a character array. Character arrays are also called strinys.The example shows how to declare and initialize a character array. A string constant is a one-dimensional array of characters terminated by a null character. In the example, the last character \0 is called a null character. The difference between 0 and \0 is that the ASCII value of 0 is 48 and the ASCII value of \0 is 0.


