MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following structure declaration will throw an error? |
| A. | <pre class="prettyprint lang-c">struct temp{};<br> struct temp s;<br> main(){}<br></pre> |
| B. | <pre class="prettyprint lang-c">struct temp s;<br> struct temp{};<br> main(){}<br></pre> |
| C. | <pre class="prettyprint lang-c">struct temp{}s;<br> main(){}<br></pre> |
| D. | All of above |
| E. | None of these |
| Answer» F. | |