< Back 43. constexpr and consteval Exercise 430 Exercise 431 Exercise 430 Look at maze-builder Browse the code in the repo Exercise 431 Implement a consteval function that calculates the volume of a box Solution consteval int volume(int width, int height, int depth) { return width * height * depth; }