Q15
What does the 'void' keyword indicate in a C function declaration?
A.
Empty return type
AnswerB.
Integer return
C.
Floating-point return
D.
String return
Answer: Option A
Solution
Answer: Option A
Solution:
The 'void' keyword in a C function declaration indicates Option A: Empty return type. When a function is declared with 'void' as its return type, it means that the function does not return any value.