another linked question is Segmentation fault while using strcpy()?
I have a structure:
struct thread_data{
char *incall[10];
int syscall arg_no;
int client_socket;
};
How do I initialize a pointer to a structure of type above as well as initialize the pointer to the 10 strings (incall[]) inside the structure.
Do I first initialize the strings and then the structure.
Thanks.
An edit: I guess I used the wrong word and should have said allocate. Actually I am passing this structure as an argument to threads. No. of threads is not fixed and the data structure sent as argument must be unique for each thread and "thread safe" i.e cannot be changed by other threads.