C++ Project.

Hey, I am confused on what exactly I am doing on this project. I am given 3 files; mystring.h, mystring.cpp, and driver.cpp and just asked to implement and test the class. Do I just need to go through and finish the functions in the mystring.cpp file? The webpage is:

http://www.engr.siu.edu/grad2/flanigan/web/projects_B/projects.htm

It is project 2. Any help would be greatly appreciated. Thanks.
It looks like that's what you're supposed to do. An excerpt from mystring.cpp:
1
2
3
4
5
6
7
/*
MyString::MyString(const char* c_str) {

	length = strlen(c_str);
	// finish the function implementation
}
*/
Last edited on
Topic archived. No new replies allowed.