Hi,I wanted to have a array for char words. That is have a list of words like one two three

So, tried
Code:
char *num[]={"One","Two","three"};
And it works fine. But later I wanted to assign the char words manually.So i tried the following,but it fails to work.

Code:
   char *num[5][10];
  
   strcpy("one",num[0]);
  strcpy("two",num[1]);
  strcpy("three",num[2]);
dunnno if its coding error or wrong methodolgy(if wrong do tell me correct one.thanx).

sujeet1