Practice Test Geeks home

CPP Syntax Fundamentals & Data Structures 2

What is the output of the following code?
```cpp

int x = 5;

std::cout << x++ << " " << ++x;

```

Select your answer