how do i send a multidimensional char array to a function.
i try assigning values like this :
char ChrArrayAttributes[2][20];
strcpy(ChrArrayAttributes[0],"TIME");
strcpy(ChrArrayAttributes[1],"IDENT");
and then sending it like this:
WriteValues("/pp1/reb","RADR",ChrArrayAttributes);
when i compile it gives a warning:
Test.c:115: warning: passing arg 3 of `WriteValues' from incompatible pointer type
and when i debug with gdb debugger, just before entering into WriteValues function, it gives segmentation fault. It never enters in.
why?
WriteValues function is here:
void WriteValues(char * sDBName, char * sTableName, char * ChrArrayAttr[])
{
int i = 0;
/* Trying to write values TIME and IDENT to the screen */
for(i=0; i<2; i++)
{
printf("ChrArrayAttr[%d]=%s\n",i,ChrArrayAttr[i]);
}
}
thanx.