Question

Which of the following function declaration need not have a return statement in it's body?

A int a(char *s)
B void b(int a[], int n)
C float *c()
D short d(long x)
Answer & Explanation
Option: [B]

No value returned by void.