Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC++nullptr and using aliasesSingle-choice MCQ

Which of these `using` alias declarations is valid C++?

using Callback = void(*)(int); using IntVec = std::vector<int>; template <typename T> using Ptr = T*;