Suppose there is a simple xml file:
<book> <title>Introduction to Algorithms</title> <edition>Second</edition> <authors> <author>Thomas H. Cormen</author> <author>Clifford Stein</author> </authors> </book> How do I get the value of the <edition> field and, say, the second `<author> using" C "and libxml?