for example
#include #include #include char substr[10][20]; int main() { substr[0] = \"abc\"; pr
Hope this helps:
void main(void) { char* string[10]; string[0] = "Hello"; }
Otherwise I think ya need to copy it by hand or use strcpy or the like to move it from one block of memory to another.