cplusplus.com
C++ : Forum : General C++ Programming : C++ Project.
 
cplusplus.com
Information
Documentation
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs


post C++ Project.

ky619 (6)
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.
rpgfan3233 (109)
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.