Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~110 People Reached
About Me

Student

Interests
Leeching/gaming
PC Specs
p4 1.9 Asus mxp4533 mobo 450W Qtech PSU 512 pc2100 DDR RAM GF4ti4200 64meg with dets 56.72 80Gig WD…
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for InvalidDLL

[code]#include <iostream.h> #include <ctype.h> #include <string.h> #define MAX_NAME_LEN 30 typedef struct Sheet { char Name[MAX_NAME_LEN + 1]; struct Sheet *Next, *Prev; }Sheet; //prototypes void initialise(Sheet *&, char arr[], Sheet *&); void right(Sheet *); void left(Sheet *); void first(Sheet *&); void last(Sheet *&); void erase(Sheet *); void insert(char word[], Sheet *&, …

Member Avatar for meabed
1
110