I just want to create a XML file (I have XML schema for the file) at a given location, and write a structure into it.
For instance
struct my_data
{
int no;
char *input ;
char *output;
char * descritpiton;
char *time;
};
"Expat" and "Xerces" are two options but i dont want any parsing stuff(As these libs are basically xml parsers). So,to just create one xml file , i dont think,these options are an efficient way.
Any Help ??