it has been a while since I messed with C code.
I am getting the following error when compiling C code under ubuntu using gcc.
command i am using to compile code is(if these errors are because of comiler I am using , please let me know how to make that go away):
gcc -o runnable mycode.C
error: invalid conversion from ‘void*’ to ‘char**’
line 39 is :
sequence=malloc(sizeof(char *)*seqNum);
sequence is declared as:
char **sequence;
seqNum is declared as:
int seqNum