No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: How would you implement this using the time as the seed? | |
Ok so I have a couple of files within a C program diffrent files for diffrent things etc. What I want to know is, Can I open all the files at the beginning of the program (in main) and close it when the program exits or Should I write the … | |
Why wont my delete name function acualy delete any names? [CODE]#include <stdio.h> #include <stdlib.h> #include <strings.h> void add_member(void); void remove_member(void); void display_next_member(void); void display_required_member(void); struct member_type *seek(struct member_type *, char[], char); void error_routine(void); struct member_type { char m_f_name[30]; struct member_type *pointer_to_next_record; }; struct member_type *position_ptr = NULL; struct member_type *temp_ptr; … | |
I am currently using Dev C++ to develop my programs as it is free and its easily gotten a hold of. Now the thing is that the proggraming project that I have to do has to be implemented on the unix systems within university. Is there going to be problems … | |
Hi guys im trying to write a program this is the basic spec 2 teams of 11 to be picked at random and 4 reserves there are 40 people to chose from. I am seriously stumped here as I have to pick the two teams, I managed to write a … |
The End.