Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that will display the words This is it! from a variable without assigning any characters to the variable. You cannot use cout

Write a program that will display the words This is it! from a variable without assigning any characters to the variable. You cannot use cout << This is it! << endl; or any variants of it.

this is from my pointers and references lesson. the only example they give me is this:

#include

using namespace std;

int main(){

int a = 100;

int* b = &a;

cout << "Value of a is: "<< a << endl;

cout << "Value of b is: "<< b << endl;

cout << "Value of b is: "<< *b << endl;

cout << endl;

a = 200;

cout << "Value of a is: "<< a << endl;

cout << "Value of b is: "<< *b << endl;

cout << endl;

system("PAUSE");

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions