20. Default Function Arguments

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?

Need Help? Refer to the Quick Guide below

Select Answer