Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~113 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for heidi

this is some of my code, could you work out how i am suppose to do this? /*from main.cpp*/ student.read(cin); student.print(cout) << endl; ----------------------------- /*from student.cpp*/ const char * Student::getStudents() const{ string tmp; tmp = getStudentName(); tmp += ": "; tmp += getStudentID(); return (const char *) tmp.c_str(); } ostream& …

Member Avatar for basementcoder
0
113