Skip to content

Instantly share code, notes, and snippets.

@ichtrojan
Created September 30, 2018 14:33
Show Gist options
  • Save ichtrojan/1f7e1c7666edc75c7667775737c43490 to your computer and use it in GitHub Desktop.
Save ichtrojan/1f7e1c7666edc75c7667775737c43490 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
class human {
public:
string name;
int age;
void eat () {
cout << name <<" is eating" << endl;
}
void eat (string food1) {
cout << name <<" is eating "<< food1 << endl;
}
};
int main () {
human exhibitA;
exhibitA.name = "Michael";
exhibitA.eat();
exhibitA.eat("Rice");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment