Write a single statement that will print the message “first is ” followed by the value of first, and then a space, followed by “second = “, followed by the value ofsecond.

C++

LANGUAGE: C++ CHALLENGE: Write a single statement  that will print the message  “first is ” followed by the value  of first, and then a space, followed by “second = “, followed by the value  ofsecond. Print everything on one line and go to a new line after printing. Assume  that first has already  been declared  as a double  and that second has beendeclared  as an int . Assume  also that the variables …

Read More