C Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesC Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 20th, 2012, 12:52 AM
pradeep rawat pradeep rawat is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 2 pradeep rawat User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 m 29 sec
Reputation Power: 0
Xml

code :
#include<stdio.h>
#include<libxml/parser.h>
#include<libxml/tree.h>
#ifdef LIBXML_TREE_ENABLED

int main(int argc, char * argv[])

{
xmlDocPtr doc;


doc = xmlReadFile((const char *)argv[1],NULL,0);
if (doc == NULL) {
printf("Failed to parse %s\n", (const char *)argv[1]);
return 1;
}
printf("XML Read Successful\n");
xmlNode * root, *cur ,* node ,*child;
root = xmlDocGetRootElement(doc);

fprintf(stdout,"%s\n", root -> name);
child = root -> xmlChildrenNode;
fprintf(stdout,"%s\n", child -> name);
for ( cur = node ;cur ; cur= node ->next){ = node -> next){
if (node -> type == XML_ELEMENT_NODE){

printf("cur : %s\n", cur->name)
return 0 ;

#else
int main(void) {
fprintf(stderr, "Tree support not compiled in\n");
exit(1);
}
#endif
ques: my these code are just returning the root element but not all the elements and children.

Reply With Quote
  #2  
Old December 20th, 2012, 07:16 AM
salem's Avatar
salem salem is online now
Contributed User
Click here for more information
 
Join Date: Jun 2005
Posts: 3,838 salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)salem User rank is General 12nd Grade (Above 100000 Reputation Level)  Folding Points: 153 Folding Title: Novice Folder
Time spent in forums: 2 Months 3 Weeks 2 Days 17 h 58 m 15 sec
Reputation Power: 1774
Nobody is going to bother reading your code until you post it with [code][/code] tags.
__________________
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper

Reply With Quote
  #3  
Old December 20th, 2012, 08:27 AM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,361 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 3 Days 10 h 11 sec
Reputation Power: 383
Code tags are necessary but not sufficient!

What might this fragment mean?

{ = node -> next){
__________________
[code]Code tags[/code] are essential for python code!

Reply With Quote
  #4  
Old December 21st, 2012, 12:27 AM
pradeep rawat pradeep rawat is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 2 pradeep rawat User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 m 29 sec
Reputation Power: 0
Quote:
Originally Posted by b49P23TIvg
Code tags are necessary but not sufficient!

What might this fragment mean?

{ = node -> next){




thats a mistak

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesC Programming > Xml

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap