book.xml: A sample XML file
Posted by Joys of Programming on in C/C++
For explaining programming with libxml, we will make use of the following sample xml file
<book> <title>Introduction to Algorithms</title> <edition>Second</edition> <authors> <author>Thomas H. Cormen</author> <author>Charles E. Leiserson</author> <author>Ronald L. Rivest</author> <author>Clifford Stein</author> </authors> </book>
Comments: