Vidyalelo
C Programming · Q15

C Fundamentals

Programming · C Programming · question 15

Q15

What does the 'void' keyword indicate in a C function declaration?

A.
Empty return type
Answer
B.
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.