MCQOPTIONS
Bookmark
Saved Bookmarks
→
C++ Programming
→
Constructors And Destructors in C++ Programming
→
The destination statement for the goto label is id..
1.
The destination statement for the goto label is identified by what label?
A.
*
B.
$
C.
:
D.
E.
@None of these
Answer» D.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> int main()<br> {<br> int num = 12;<br> if (num < 13)<br> {<br> T:<br> cout << num;<br> goto T;<br> }<br> break;<br> return 0;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> int main ()<br> {<br> int i;<br> for (i = 10; i > 0; i--)<br> {<br> cout << i< if (i == 8)<br> break;<br> }<br> return 0;<br> }<br></iostream></pre>
The destination statement for the goto label is identified by what label?
How are many sequences of statements present in c++?
The switch statement is also called as?
The if..else statement can be replaced by which operator?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply