Basically if I had a string in b[10] it would get copied to a 10 using the pointers. ( Dunt want to use strcopy as i could have a \0 ) The above method works..
Now if I want to do the same thing but into an array of structures:
What I want to do, is copy data from an array I have into an array inside a structure using the pointer method though and not using strcpy. Any suggestions.