1.

Declare the following statement?
"A pointer to a function which receives an int pointer and returns float pointer".

A. <pre><code class="cpp">float *(ptr)*int;</code></pre>
B. <pre><code class="cpp">float *(*ptr)(int)</code></pre>
C. <pre><code class="cpp">float *(*ptr)(int*)</code></pre>
D. <pre><code class="cpp">float (*ptr)(int)</code></pre>
Answer» D. <pre><code class="cpp">float (*ptr)(int)</code></pre>


Discussion

No Comment Found