Which variable has the longest scope in the following C code?<br><pre><code class="c-program">#include &lt;stdio.h&gt;int b;int main(){ int c; return 0;}int a;</code></pre>

Correct Answer: b