Create an instance of that class, set it a radius and then print it:
Code:
int main(){
    Circle c;
    c.setRadio(34);
    cout<<c.getArea();
}