Question.1
A UART init function has default arguments:
void uart_init(int baud, int parity = 0, int stop = 1); uart_init(9600);
What arguments does the compiler pass?
Select Answer
9600, 0, 0
9600, 0, 1
9600 only — parity and stop are ignored
9600
Compilation error — all arguments are required