We can use char pointer to reference an array of characters quite easily:
We can use char pointer to reference an array of characters quite easily:
char string[11] = "char array";
char* string_pointer = string;
The assignment operator directs the pointer to the address of the first character in the array, and the program displays the text 'char array' using the pointer.