Show Bid Request
Write your own version of strstr().
Bid Request Id: 36891
|
|
|
Posted by: |
kenai (1 ratings)
(Software buyer rating 10)
|
Non-action Ratio: |
Very Good - 0.00%
|
Posted: |
Nov 24, 2002 3:32:36 PM EDT
|
Bidding Closes: |
Dec 8, 2002 3:48:24 PM EDT
|
Viewed (by coders): |
50 times
|
Deadline: |
12/9/2002
TIME EXPIRED
|
|
|
|
Description:
/*Calls strstr() twice to find substrings in "how now brown cow". One should be found, the other is nonexistent. This provides a test program for personal version of strstr().*/
#include <stdio.h>
#include <string.h>
int main (void)
{
char string[] = "How now brown cow";
char *substring;
substring = strstr( string, "own" );
if (substring == NULL)
printf ( "Not found. \n");
else
printf ( "%s\n",substring );
substring=strstr (string, "red" );
if (substring == NULL)
printf ("Not found. \n" );
else
printf ( "%s\n",substring );
return 0;
}
/*Assignment: Write your own version of strstr(). Test your function with the above program.*/
Deliverables: 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.
2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request.
3) Complete ownership and distribution copyrights to all work purchased.
Note: This is a very simple homework assignment; please price accordingly.
Platform:
Microsoft Visual C++ 6.0, (this is a C program!!!)
Must be 100% finished and received by buyer on:
Dec 9, 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.
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!
|
$4 (USD)
|
Nov 24, 2002 4:20:03 PM EDT
|
10
(Excellent)
|
|
|
Dear Kenai,
This project sounds simple, so I will be happy to do it for $4. I have experience Visual C++ 6.0, and will have your program finished soon.
I will even begin this program before you accept my bid, and send you some screen shots of the working program.
Looking foward to hearing from you,
Aaron_Moore
|
|
|
|
|
|