#include "stdafx.h"
#include <iostream>
class Cat
{
public:
int itsAge;
int itsWeight;
};
void main()
{
Cat Frisky;
Frisky.itsAge = 5;
cout << "Frisky is a cat who is ";
cout << Frisky.itsAge << " years old.\n";
}
i know i shouldent get dependent on forums but i need help with this i have no idea.