What is the problem in the following C declarations?<br><pre><code class="c-program">int func(int);double func(int);int func(float);</code></pre>

Correct Answer: All of the mentioned