- #include <cstdlib>
- #include <iostream>
- using namespace std;
- class kitty {
- public:
- unsigned int weight;
- unsigned int height;
- };
- int main(int argc, char *argv[])
- {
- kitty Furry;
- Furry.weight = 5;
- cout<<Furry.weight;
- system("PAUSE");
- return EXIT_SUCCESS;
- }