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
~238 People Reached
Favorite Forums
Favorite Tags
c x 4
Member Avatar for shakisparki

void * realloc(void*ptr , size_t size) is the second argument supposed to be the number of bytes to be allocated, e.g 5 * sizeof(int) or just the number of elements needed e.g 5 or 10

Member Avatar for Narue
0
108
Member Avatar for shakisparki

Hello , Please what does the second typedef statement do, [code] struct listnode{ char data; struct listnode *nextPtr; }; typedef struct listnode Listnode; typedef ListNode *ListNodePtr; [/code] what is the difference between [code] ListNodePtr *sPtr; and ListNodePtr startPtr; [/code] Please explain what the second Line of Code would do please …

Member Avatar for Adak
0
130