1.

Which of the following structure declaration doesn t require pass-by-reference?

A. <pre class="prettyprint lang-c">struct temp{int a;};<br> main(){}<br> struct temp s;<br></pre>
B. <pre class="prettyprint lang-c">struct{int a;}s;<br> main(){}<br></pre>
C. <pre class="prettyprint lang-c">struct temp{int a;};<br> main(){<br> struct temp s;<br> }<br></pre>
D. All of above
E. None of these
Answer» F.


Discussion

No Comment Found

Related MCQs