Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC++fundamental types and autoSingle-choice MCQ

Given `const int x = 10;`, what is the type of `r` and can you modify the original `x` through it?

const int x = 10; auto& r = x;