No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
[CODE]#include<iostream> #include<fstream> using namespace std; class Game { private: int a; public: };class Game Game game; // the game object //int main() { ofstream out("game", ios::out | ios::binary | ios::app); out.write((char *)&game, sizeof(Game)); out.close(); }[/CODE]
:S Can you explain me how to link classes with each other?
#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);}
The End.
WondererAbu