What might the output look like?
```
#include
int main()
{
int x, *x_ptr = &x;
*x_ptr = 10;
cout << “ “ << x << “ “ << &x << “ “ << x_ptr << “ “ << *x_ptr;
}
```
A. 10 10 0012FF60 0012FF60
B. 10 0012FF60 10 0012FF60
C. 0012FF60 10 10 0012FF60
D. 10 0012FF60 0012FF60 10
D. 10 0012FF60 0012FF60 10
Computer Science & Information Technology
You might also like to view...
As you begin your presentation, you should let the audience know your purpose and provide them with an overview of your presentation
Indicate whether the statement is true or false
Computer Science & Information Technology
Microsoft Word's ________ view displays the hierarchy of the document's data
A) Navigation B) Hierarchy C) Outline D) Full Screen
Computer Science & Information Technology