Question Details
(solution) C++ Programming Assignment Instructions: Please read below on the
I am in need of C++ assignment done, which involves C-style strings and characters. Check the attachment for the complete information on the project.
C++ Programming Assignment
Instructions:
Please read below on the next pages for the complete procedure. Here is the rubric: MUST BE YOUR OWN CODE, NOT SOLUTION FOUND ONLINE Phase 1
Implement the following functions. Each function deals with null terminated C-Style strings. You
can assume that any char array passed into the functions will contain null terminated data. Place
all of the functions in a single file and then create a main() function that tests the functions
thoroughly. You will lose points if you don't show enough examples to convince me that your
function works in all cases.
Please note the following:
1. For phase 1 you may not use any variables of type string. This means that you should not
#include <string>. Also, you may not use any c-string functions other than strlen(). If you
use any other c-string functions, you will not get credit. Note, however, that functions
such as toupper(), tolower(), isalpha(), and isspace() are NOT c-string functions, so you
can use them. Also note that this prohibition is only for the functions that you are
assigned to write. You can use whatever you want in your main() function that tests them.
2. In most cases it will be better to use a while loop that keeps going until it hits a '