Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
C++
easy
C++
const correctness
Single-choice MCQ
Does the following code compile, and why?
int a = 10, b = 20; int* const p = &a; p = &b;