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
Ranked #107.73K
1 Posted Topic
[QUOTE=Ancient Dragon;269856] [code] ptr[i] = malloc(strlen(word[i]) + 1 * sizeof(char **))); [/code] Overall, give you B+ for good tutorial. Correct the mistakes and it can be a great tutorial.[/QUOTE] nah, this was wrong anyway. SO BE CAREFUL FOLKS! it has to be: [code] ptr[i] = malloc((strlen(word[i])+1) * sizeof(char **))); [/code] …
The End.
PeterPimmel