Home »
MCQs »
C++ MCQs
Can we use the return type void in the main() function in a C++ program?
105. Can we use the return type void in the main() function in a C++ program?
- Yes
- No
Answer: B) NO
Explanation:
No, we cannot use the return type void in the main () function, we have to use the return type "int" with the main() function.