Medium
In the following code, how could we write the definiton of area out of the class ?
class Rectangle {
public:
double hauteur;
double largeur;
double area() {
return hauteur*largeur;
}
};
Author: SamuelStatus: PublishedQuestion passed 17 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about C++