#include <stdio.h>

int main()
{
    char a[] = "hello people";
    char b[] = "hello other people";

    char *ar[2];
    ar[0] = &(a[0]); //the () are not necessary here
    ar[1] = &(b[0]); //but it makes it easier to read

    printf("a=%s\n", ar[0]);
    printf("b=%s\n", ar[1]);
}