✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the following code fragment:
int x{10}, *p{&x};
int const& r{x};
bool flag {*p == r};
which of the following options is correct?