Here's the code:
char * pointer, ** ptr2;
char ptr[5][100];
strcpy(ptr[0],"fasfasf fasfas");
strcpy(ptr[1],"sfasfa");
ptr2=ptr;
When trying to read what's inside ptr2 it tells me that it cannot access that memory but i can access it through ptr. Any ideas on why is it failing? Thanks