Question.4
A driver class has a single-argument constructor:
class UARTDriver {
public:
UARTDriver(int baud) { /* setup */ }
};
void configure(UARTDriver drv) { /* ... */ }
configure(9600); // Pass int where UARTDriver expectedDoes configure(9600) compile?