#include int main() { char * test1[3]; char test_array[5]; char * test_ptr; char consonent = 'R'; test1[0] = "one"; test1[1] = "two"; test1[2] = "three"; printf( "test1[0] = %s\n", test1[0] ); printf( "test1[1] = %s\n", test1[1] ); printf( "test1[2] = %s\n", test1[2] ); test_array[0] = 'a'; test_array[1] = 'e'; test_array[2] = 'i'; test_array[3] = 'o'; test_array[4] = 'u'; test_ptr = &consonent; printf( "test_ptr = %c\n", *test_ptr ); test_ptr = test_array; printf( "test_ptr = %s\n", test_ptr ); test_ptr = test1[1]; printf( "test_ptr = %s\n", test_ptr ); return 0; }