(Write a C++ Statement) For each of the following, write a single statement that performsthe indicated task.a) Output the string "Enter your name: ".b) Use a stream manipulator that causes the exponent in scientific notation and the lettersin hexadecimal values to print in capital letters.c) Output the address of the variable myString of type char *.d) Use a stream manipulator to ensure that floating-point values print in scientific notation.e) Output the address in variable integerPtr of type int *.f) Use a stream manipulator such that, when integer values are output, the integer base foroctal and hexadecimal values is displayed.g) Output the value pointed to by floatPtr of type float *.h) Use a stream member function to set the fill character to '*' for printing in field widthslarger than the values being output. Repeat this statement with a stream manipulator.i) Output the characters 'O' and 'K' in one statement with ostream function put.j) Get the value of the next character to input without extracting it from the stream.k) Input a single character into variable charValue of type char, using the istream memberfunction get in two different ways.l) Input and discard the next six characters in the input stream
(Write a C++ Statement) For each of the following, write a single statement that performs
the indicated task.
a) Output the string "Enter your name: ".
b) Use a stream manipulator that causes the exponent in scientific notation and the letters
in hexadecimal values to print in capital letters.
c) Output the address of the variable myString of type char *.
d) Use a stream manipulator to ensure that floating-point values print in scientific notation.
e) Output the address in variable integerPtr of type int *.
f) Use a stream manipulator such that, when integer values are output, the integer base for
octal and hexadecimal values is displayed.
g) Output the value pointed to by floatPtr of type float *.
h) Use a stream member function to set the fill character to '*' for printing in field widths
larger than the values being output. Repeat this statement with a stream manipulator.
i) Output the characters 'O' and 'K' in one statement with ostream function put.
j) Get the value of the next character to input without extracting it from the stream.
k) Input a single character into variable charValue of type char, using the istream member
function get in two different ways.
l) Input and discard the next six characters in the input stream
Trending now
This is a popular solution!
Step by step
Solved in 2 steps