Hi,
I have a struct that looks like this
struct Info
{
char **field_names;
double **data;
int *cindex;
}
I have to serialize an object of this struct and send it over a socket and deserialize at the other end. What is the best option for this?