Show the output of the following code:

```
#include
using namespace std;

class A
{
public:
int x;
int y;
int z;

A(): x(1), y(2), z(3)
{
}
};

int main()
{
A a;
cout << a.x << " " << a.y << " " << a.z;

return 0;
}
```


1 2 3

Computer Science & Information Technology

You might also like to view...

The level order traversal guides the visits to items from left to right through the levels of the tree, much like reading lines of text in a document.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Define a hash.

What will be an ideal response?

Computer Science & Information Technology

When using the lasso tool, releasing the mouse connects the selection border to the point where you began dragging, finishing the loop.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

An outside review of a technical document serves a similar purpose to a beta test of a software package.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology