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
~2K People Reached
Favorite Tags
c++ x 4
c x 1
Member Avatar for radioman28

Hi, I am a almost thirtysomething, going back to school at night while working full time. I decided that it was time to get an education to enable me to break out of the Cable industry and into the programming scene. I am interested in Computer Science and web programming(maybe). …

Member Avatar for ocmseo
0
653
Member Avatar for radioman28

Hi, I am thinking about writing a program to compare MP3's in different directories that will compare file size, ID3 tags, bit rate etc. I want to be able to search the computer for MP3 files, then list them in a rich text box like you would see in windows …

Member Avatar for SethWebster
0
156
Member Avatar for Mature_Student

Hi there, I have used the advice in this forum to solve most of the problems I have had so far but I am running out of time on this final assignment (due this evening) and I am stumped. I need to write a function that takes a time in …

Member Avatar for Mature_Student
0
224
Member Avatar for radioman28

Hi, I work full time in a non-computer industry and am looking for a online school or more specific a college that provides online classes for a Computer Science degree. I am taking classes at night at a local community college right now. I expect to finish an associates in …

Member Avatar for Libertate
1
177
Member Avatar for Acidburn

[php] #include <iostream> #include <cstring> using namespace std; class date { public: date(int = 1, int = 1, int = 1990); //constructor void Printdate(); void setday(int); void setmonth(int); void setyear(int); void setdate(int, int, int); private: int day, month, year; }; date::date(int d, int m, int y) { setdate(d,m,y); } void …

Member Avatar for Acidburn
0
444
Member Avatar for radioman28

Hi, I am writing a couples class, one base, and one derived to track an employees pay records. It has a static private ptr array to store Employee and EmployeePay objects. [CODE]static Employee* empArray[];[/CODE] Employee has first and last name, ssn, id number and a date. EmployeePay derives from Employee. …

0
142