Print integer 100 in octal, hexadecimal and decimal, using stream manipulators and separated by tabs.
What will be an ideal response?
```
cout << oct << 100 << '\t' << hex << 100 << '\t' << dec << 100;
```
Computer Science & Information Technology
You might also like to view...
Which of the following is an electromagnetic wave?
A. light B. heat C. radio D. All of the above
Computer Science & Information Technology
Records are composed of ____.
A. databases B. fields C. worksheets D. files
Computer Science & Information Technology
Identify acompare function that sorts numeric values in ascending order.
A. ?function ascending(a, b) {return a - b;} B. ?function ascending(b, a) {return a;} C. ?function ascending(a, b) {return b - a;} D. ?function ascending(b, a) {return b;}
Computer Science & Information Technology
The object code for a task that needs to be performed often can be stored in a(n) ____.
Fill in the blank(s) with correct word
Computer Science & Information Technology