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
~6K People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for jaelle

hi all, I'm trying to read a file containing this: Class Time Physics 15:30 Calculus 9:00 Biology 14:30 Chemistry 11:30 what i want to do is read the file and tokenize it and put the class names and class time in different array. I also want to ignore the first …

Member Avatar for JamesCherrill
0
2K
Member Avatar for jaelle

i defined a structure for a student `typedef struct {` `char firstName[20];` ` char lastName[20];` `int id;` ` char *birthDate; `} Student;` the function definition for a student is this `Student * createStudent(const char * first_Name, const char *last_Name, int ID, const char * `birthDate_str) {` ` /* Declare a …

Member Avatar for thines01
0
4K