Which member of the union will be active after REF LINE in the following C code?<br><pre><code class="c-program">#include &lt;stdio.h&gt;union temp{ int a; float b; char c;};union temp s = {1,2.5,’A’}; //REF LINE</code></pre>

Correct Answer: a