For what minimum value of x in a 32-bit Linux OS would make the size of s equal to 8 bytes?<br><pre><code class="c-program">struct temp{ int a : 13; int b : 8; int c : x;}s;</code></pre>

Correct Answer: 12