Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~89 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for cintd

[code = C]struct m_b_e{ int a; struct m_b_e *next;};struct tree{ int b; struct m_b_e *block_list;};and function declarations .. void func(struct tree*);void func_in(struct tree*);definations .. void func(struct tree *p){ struct m_b_e *c,*d; printf("func..\n"); if(!p) return; for(c=p->block_list;c;c=d) { d = c->next; free(c); } func_in(p);}void func_in(struct tree *p){ printf("inner most function\n");}And, pointer p …

Member Avatar for iamthwee
0
89