How can i assign a two dimensional array into other temporary two dimensional array.....?? in C Programming..
- by AGeek
Hi I am trying to store the contents of two dimensional array into a temporary array.... How is it possible... I don't want looping over here, as it would add an extra overhead.. Any pointer notation would be good.
struct bucket
{
int nStrings;
char strings[MAXSTRINGS][MAXWORDLENGTH];
};
void func()
{
char **tArray;
int…