View Single Post
Old 05-19-2005, 01:16 PM   #11 (permalink)
QUantumAnenome
Code Monkey
 
Join Date: Mar 2005
Posts: 55
QUantumAnenome is on a distinguished road
Send a message via Yahoo to QUantumAnenome
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.";
QUantumAnenome is offline   Reply With Quote