cplusplus.com cplusplus.com
cplusplus.com   C++ : Forums : General C++ Programming : C++ Project.
  Search:
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forums
Forums
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Articles
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 (111)
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

This topic is archived - New replies not allowed.
Home page | Privacy policy
© cplusplus.com, 2000-2008 - All rights reserved - v2.2
Spotted an error? contact us