Array of String using Pointers
In this section, you will learn how to create an array of string using pointers in C.
The declaration of an array of character pointers is an extremely useful extension to single string pointer declarations. In the example below, A two element array of character pointers where each element is a pointer to a character. We have initialized the array with two elements by giving index numbers. In C, format specifier %s is used with the printf to print the string.
Here is the code:
ARRAYOF.C
#include <stdio.h>
|
Output will be displayed as:
ARRAYOF.EXE