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

Hi, Can anyone tell me if i have done these functions correctly; i maybe missing something; maybe thats why im getting segmentation fault!!! #include "listFuns.h" #include <stdlib.h> #include <stdio.h> listADT stringToList(char str[]) /* desc: converts a C string (array of char) into the */ /* corresponding word (list of characters) …

Member Avatar for Narue
0
206
Member Avatar for minorityreport

Hello, i am developing a software for wordCount; i have done all the functions neccessary; I get segmentation fault when i try and run this : int main() { char* str = (char*)malloc(100); str[0] = 'T'; str[1] = 'e'; str[2] = 's'; str[3] = 't'; str[4] = 0; itemType item …

Member Avatar for Narue
0
82