Q. What is the default return type of a function in C if not specified?
β
Correct Answer: (B)
int
Explanation: By default, functions return 'int' if no type is specified.