Question from the C++ - Fundamentals test

Medium

Which statement concerning the line ": rectangle(h, l), couleur(c)" is true ?

class Rectangle {...}
class Couleur {...}
class RectangleColore {
    RectangleColore(double h, double l, Couleur c)
    : rectangle(h, l), couleur(c)
    {...}
private:
    Rectangle rectangle;
    Couleur couleur;
}
Author: SamuelStatus: PublishedQuestion passed 210 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!