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
~476 People Reached
About Me

Student

Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for hocuz pocuz

Hi. I am writing a text-rpg game using c++ and I want to save the gave somehow. How can i do it? Thank you.

Member Avatar for Ancient Dragon
0
254
Member Avatar for WondererAbu
Member Avatar for WondererAbu

#include <iostream> #include <fstream> #include "Teacher.h" using namespace std;// syntax error : missing ';' before 'PCH creation point' teacher::teacher(int tid,int cid,char *teachname) { this->tid=tid; this->cid=cid; strcpy(this->teachname,teachname); } void teacher::setTeacherId(int tid){this->tid=tid;} int teacher::getTeacherId(){return tid;} void teacher::setCourseId(int cid){this->cid=cid;} int teacher::getCourseId(){return cid;} void teacher::setTeacherName(char *teachname){strcpy(this->teachname,teachname);} void teacher::getTeacherName(char *teachname){strcpy(teachname,this->teachname);}

Member Avatar for Nick Evan
0
73