Home »
MCQs »
C++ MCQs
Which of the following function can be called without any arguments?
72. Which of the following function can be called without any arguments?
- int print(int count, char ch='*')
- int print(char ch='*')
- int print(char ch='*',int count)
- int print(char ch)
Answer: B) int print(char ch='*')
Explanation:
In the above options, option B is correct.