Declare constant 'y' to store 44
Answers
Answered by
2
Explanation:
Using constexpr keyword: Using constexpr in C++(not in C) can be used to declare variable as a guaranteed constant. But it would fail to compile if its initializer isn’t a constant expression.
Similar questions