I get this error whenever i run the program \" Assignment makes pointer from Integer without a cast\". My code is written below.... Please help... Thankx
struct
I think yourchar *number[3]; should be char number[3];, or at least you should allocate space for each of the 3 number pointers.
char *number[3];
char number[3];
number