Exercise 16 - Due at 11:59:00 PM on Sunday, 10/10/2021 1. Write a function to take a const integer parameter with the default value 7. The function retruns nothing. The function prints the ASCII art for the numeral charcater 3, of the given size. In main, call the function twice. Once with the default argument, and once with a user entered size. You may assume this would always be a positive odd number >=7. You do not have to test for it. Sample Run: Calling the function with default size ******* * * ******* * * ******* Enter the size: 9 Calling the function with user-entered size ********* * * * ********* * * * *********