Sample code for 30+ languages & platforms
Unicode C

Create XML using Tag Paths

See more XML Examples

Demonstrates creating an XML document using tag paths.

This example requires Chilkat v9.5.0.64 or greater.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkXmlW.h>

void ChilkatSample(void)
    {
    HCkXmlW xml;

    xml = CkXmlW_Create();

    CkXmlW_putTag(xml,L"world");

    //  This example uses features introduced in v9.5.0.64
    CkXmlW_NewChild2(xml,L"north_america|united_states|california|sacremento",L"capital");
    CkXmlW_NewChild2(xml,L"north_america|united_states|california|los_angeles",L"City of Angels");
    CkXmlW_NewChild2(xml,L"north_america|united_states|california|san_francisco",L"Silicon Valley");
    CkXmlW_NewChild2(xml,L"north_america|united_states|california|san_diego",L"Birthplace of California");
    CkXmlW_NewChild2(xml,L"north_america|united_states|illinois|chicago",L"Windy City");

    wprintf(L"%s\n",CkXmlW_getXml(xml));

    //  Produces the following XML
    //  
    //  	<?xml version="1.0" encoding="utf-8" ?>
    //  	<world>
    //  	    <north_america>
    //  	        <united_states>
    //  	            <california>
    //  	                <sacremento>capital</sacremento>
    //  	                <los_angeles>City of Angels</los_angeles>
    //  	                <san_francisco>Silicon Valley</san_francisco>
    //  	                <san_diego>Birthplace of California</san_diego>
    //  	            </california>
    //  	            <illinois>
    //  	                <chicago>Windy City</chicago>
    //  	            </illinois>
    //  	        </united_states>
    //  	    </north_america>
    //  	</world>
    //  


    CkXmlW_Dispose(xml);

    }