Reputation: 69
I want to generate a xml file through my C application and add entries to it dynamically. I almost know what should my xml look like, i mean its schema. Please let me know how to accomplish this in C.
Upvotes: 3
Views: 12531
Reputation: 206546
You can use an xml library like minixml.
It can read and write XML and XML-like data files in your application without requiring large non-standard libraries and Mini-XML only requires an ANSI C compatible compiler.
Upvotes: 5