Vidyalelo
C Programming · Q37

Function

Programming · C Programming · question 37

Q37

What is the result of compiling and running this code? main() char string[] = "Hello World"; display(string); void display(char *string) printf("%s", string);

A.
will print Hello World
B.
Compilation Error
Answer
C.
will print garbage value
D.
None of these.

Answer: Option B

Solution

Answer: Option B
Solution:

Compiler Error : Type mismatch in redeclaration of function display
As the function display() is not defined before use, compiler will assume the return type of the function which is int(default return type). But when compiler will see the actual definition of display(), mismatch occurs since the function display() is declared as void. Hence the error.