#include <stdio.h>

int main()
{
    char *foo = {"bar", "fred", "bob"};
    printf("%s\n", foo);
    return 0;
}