Q84
What will be the output of the following C code? #include int const print() printf("example.com"); return 0; void main() print();
A.
Error because function name cannot be preceded by const
B.
example.com
AnswerC.
example.com is printed infinite times
D.
Blank screen, no output
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board