Which of the following is an external variable in the following C code?<br><pre><code class="c-program">#include &lt;stdio.h&gt;int func (int a){ int b; return b;}int main(){ int c; func (c);}int d;</code></pre>

Correct Answer: d