How Software Gets Done  


Login

Software Buyers
Request bids
Search coders
My Buyer Account
Buyer help
Buyer articles
Buyer FAQ
Latest news
 
Software Coders
Newest open work
Browse all work
Search all work
My Coder Account
Coder help
Coder articles
Coder FAQ
Latest news
 
Affiliates
My Affiliate Account
Affiliate help
Affiliate FAQ
Latest news
 
Newest Bid Requests.
(See all)
Program that retrieves page titles from web pages
By NeedProgram on Sep 29
Max Bid: Open to fair suggestions


Retrieve whois data from Internet (not emails)
By NeedProgram on Sep 29
Max Bid: Open to fair suggestions


TWAIN Scanner Interface
By Lee2000 on Sep 29
Max Bid: $25


optimizing ranking position
By Veejay01 on Sep 28
Max Bid: Open to fair suggestions


Write information articles
By MissingLink on Sep 28
Max Bid: $5


3D conversion of logo
By Goalie35 on Sep 28
Max Bid: $50


Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(180 open)
   Access 
(54 open)
   MySQL 
(123 open)
   Oracle 
(14 open)
   SQL Server 
(70 open)
   Other DB 
(26 open)
Documentation / Tech Writing 
(25 open)
   Language (Human) Translations 
(12 open)
Data Entry 
(41 open)
Game Development 
(25 open)
Graphics / Art / Music 
(59 open)
   Graphics 
(66 open)
     Adobe AfterEffects 
(8 open)
     Adobe Photoshop 
(30 open)
     Adobe Premiere 
(6 open)
     3d Animation 
(21 open)
   Art (Misc.) 
(15 open)
   Music 
(8 open)
   Photography 
(5 open)
   3d Modeling 
(15 open)
Language Specific 
(123 open)
   Assembly / Machine language 
(14 open)
   ASP 
(65 open)
   ASP .NET 
(68 open)
   C# 
(75 open)
   C++ / C 
(163 open)
   Carbon (Mac OS) 
(4 open)
   Cocoa / Obj-C 
(4 open)
   Cold Fusion 
(10 open)
   Delphi 
(62 open)
   Java 
(94 open)
   JSP 
(16 open)
   Perl 
(50 open)
   Python 
(6 open)
   PHP 
(123 open)
   XML/XSL 
(32 open)
   Visual Basic 
(164 open)
   Visual Basic .Net 
(105 open)
   Other 
(80 open)
Misc 
(48 open)
   Middleware 
(4 open)
   CAD 
(3 open)
MultiMedia 
(27 open)
   Video Editing 
(5 open)
Network 
(35 open)
   Network Design 
(9 open)
   Network Implementation 
(9 open)
Platforms 
(73 open)
   Windows 
(184 open)
     MS Exchange 
(9 open)
     MS Office 
(26 open)
     Other 
(12 open)
   Darwin 
(1 open)
   Embedded Systems 
(15 open)
   Hand Held/PDA Programming 
(21 open)
   Internet Browser 
(50 open)
   Linux 
(67 open)
   Lotus Notes / Domino 
(3 open)
   UNIX 
(35 open)
Requirements 
(14 open)
Security 
(32 open)
Testing / Quality Assurance 
(18 open)
Web 
(174 open)
   Page Design 
(96 open)
   Flash 
(53 open)
   Marketing 
(14 open)
     Search Engine Optimization 
(12 open)
     Marketing (Other) 
(11 open)
   Web Services 
(92 open)
   Web (Other) 
(101 open)
Training 
(15 open)
   Computer Based 
(15 open)
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

A banking project
Bid Request Id: 14431
Bookmark in my 'To Do' list
Posted by: lmnts (3 ratings)
(Software buyer rating 10)
Non-action Ratio: Very Good - 0.00%
Buyer Security Verifications: Unverified
Approved on: Apr 23, 2002
9:03:13 PM EDT
Bidding Closes: Apr 30, 2002
9:16:42 PM EDT
Viewed (by coders): 245 times
Deadline: 5/1/2002
TIME EXPIRED
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Language Specific, C++ / C, Documentation / Tech Writing, UNIX
Enter chat room for this bid request
(0 active users at Sep 29, 2003 2:50:21 AM EDT)

Description:
This is a project for my C programming class and I was looking for someone to help me out on it.
It is basically a simple banking program. I have some of the psedocode for the program detailing step by step how to so it if you need it. I also have the files that the program starts with

This program needs a menu system that will let the user:
Display an account summary, write a check, make a deposit, withdraw money, transfer money, delete entries, save work to the .dat files and exit the program.

Deliverables:
Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.

Complete copyrights to all work purchased.

Program Description
You are to write a personal finance program. This will be made up of a savings account and a checking account. The following contains a menu of items that your program will need:

Menu Items:
Display Account Summary (Savings and Checking balances)

Write Check (Checking only)

Make Deposit

Withdraw Money

Transfer Money

Delete Entry

Save Work

Exit Program

Data Files:
Your program will read from and write to two data files, checking.dat and savings.dat. When you begin your program, checking.dat will be opened to create a checking linked list and savings.dat will be opened to create a savings linked list. This list will be modified by the above menu items. If the user selects to save their work, both linked lists will be saved to their cooresponding data files. When the user exits the program they will be prompted to save their work. If they agree, save the linked lists to the data files. If they disagree, exit program without saving the linked lists to a file.

Checking Data File
The checking data file is a tab-delimited file of the following format:


check number(000 if not a check) *tab* description *tab* debit/credit *tab* amount *tab* date *tab* balance
check number(000 if not a check) *tab* description *tab* debit/credit *tab* amount *tab* date *tab* balance
check number(000 if not a check) *tab* description *tab* debit/credit *tab* amount *tab* date *tab* balance
Continues until no more entries are present...
The following file will be used during grading, so make sure that it works with your code.

checking.dat

Savings Data File
The savings data file is a tab-delimited file of the following format:


description *tab* debit/credit *tab* amount *tab* date *tab* balance
description *tab* debit/credit *tab* amount *tab* date *tab* balance
description *tab* debit/credit *tab* amount *tab* date *tab* balance
Continues until no more entries are present...
The following file will be used during grading, so make sure that it works with your code.

savings.dat


This is what is on the checking.dat file

000 Opening Balance credit 500.00 11/10/2001 500.00
100 Olive Garden debit 34.72 11/12/2001 465.28
000 Check credit 450.61 11/13/2001 915.89
000 ATM Withdraw debit 300.00 11/13/2001 615.89
101 Tom's Sports debit 44.78 11/14/2001 571.11

This is the information on the savings.dat file:

Opening Balance credit 700.00 11/10/2001 700.00
ATM debit 400.00 11/11/2001 300.00
ATM Service Fee debit 1.50 11/11/2001 298.50
Deposit credit 77.52 11/12/2001 376.02


Platform:
this program needs to run on a unix based system

Must be 100% finished and received by buyer on:
May 1, 2002 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.



Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
Odyssey
(27 ratings)
in Bangalore, Karnataka
India
Bid id: 157,876
 
$29 (USD) Apr 23, 2002
10:29:49 PM EDT
 9
(Superb)
   
HI,
I am interested in your project.I have good experience in C and C++ with file handling. See my previsou works for reference. I can give you the code very fast.

Regards,
Odyssey
 




Bid Request Search
 Advanced Search
Newest Open Work
Latest News  
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 
Top Coders.

Buddies
Rated a 9.86 on 96 jobs 
Securenext
Rated a 9.97 on 125 jobs 
Codman
Rated a 9.97 on 159 jobs 
hernest
Rated a 10 on 122 jobs 
Andrei Remenchuk
Rated a 10 on 14 jobs 
D-N-S
Rated a 9.93 on 39 jobs 
markesh
Rated a 10 on 24 jobs 
GribFritz
Rated a 9.89 on 155 jobs 
PSergei
Rated a 9.78 on 112 jobs 
ASP.NET
Rated a 9.86 on 62 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers

 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 

Affiliate Sites
Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.