Vidyalelo
C Programming · Q41

Function

Programming · C Programming · question 41

Q41

Which of the following is a complete function?

A.
int funct();
B.
int funct(int x) { return x=x+1; }
Answer
C.
void funct(int) { printf(“Hello"); }
D.
void funct(x) { printf(“Hello"); }
E.
None of these

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board