You want to present the following formatted number: “999.000.000,00”. Which function call is
correct?

A.
printformat_number(999000000);
B.
printnumber_format(999000000);
C.
printnumber_format(999000000, 2, ‘,’, ‘.’);
D.
printnumber_format(999000000, 2);
E.
print_number(999000000, 2, ‘,’, ‘.’)