MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues in C Programming
→
Which of the following is the correct output for t..
1.
Which of the following is the correct output for the program given below?
A.
0 1 2
B.
1 2 3
C.
0 2 1
D.
1 3 2
Answer» D. 1 3 2
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
Which of the following is the correct output for the program given below?<br> <pre class="prettyprint lang-c">#include <studio.h><br>int main()<br>{<br>enum result {pass, fail, waiting};<br>enum result result1, result2, result3;<br>stud1 = pass;<br>stud2 = waiting;<br>stud3 = fail;<br>printf("%d %d %d n",result1, result2, result3);<br>return 0;<br>}<br></pre>
Which of the following is correct about <i>emp</i> used in the declaration given below ?<br><br>typedef enum employ {Engineer, Doctor, Manager} emp;
Which of the following is correct about
Which of the following is the correct output for the program given below?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply