Does this work for you?
Code:
char about[3];
about[0][] = "My name is KaaT, version 0.0";
about[1][] = "Victor is my creator.";
about[2][] = "I don't know my age yet.";
I think you mean to do this:
Code:
char *about[3];
about[0] = "My name is KaaT, version 0.0";
about[1] = "Victor is my creator.";
about[2] = "I don't know my age yet.";