MCQOPTIONS
Bookmark
Saved Bookmarks
→
C++ Programming
→
Constructors And Destructors
→
How many number of spaces should be set in default..
1.
How many number of spaces should be set in default tab?
A.
4
B.
3
C.
2
D.
1
E.
None of these
Answer» B. 3
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> unsigned long num = 56;<br> cout << num << oct < return 0;<br> }<br></pre>
What is the output of this program?<br><pre class="prettyprint lang-c"> #include <iostream><br> #include <iomanip><br> using namespace std;<br> void showDate(int mm, int dd, int yy)<br> {<br> cout << setfill('0');<br> cout << setw(2) << mm << '/'<br> << setw(2) << dd << '/'<br> << setw(4) << yy << endl;<br> }<br> int main()<br> {<br> showDate(1, 1, 2019);<br> return 0;<br> }<br></pre>
What is the use of the function showbase ?
Which is used for formatting purpose in c++?
What can be improved by formatting the source code?
How many number of spaces should be set in default tab?
Which function allows you to set minimum width for the next input?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply