Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC++type traits librarySingle-choice MCQ

What is the value of the expression below for a type T = const int&?

#include <type_traits> // T = const int& static_assert(std::is_const_v<std::remove_reference_t<T>>);