Question.5
A developer tries to debug a constexpr function by setting a breakpoint inside it:
constexpr uint32_t calc_timeout(uint32_t clk, uint32_t ms) {
return (clk / 1000) * ms; // Breakpoint here
}
constexpr uint32_t TIMEOUT = calc_timeout(72000000, 50);Will the breakpoint be hit? (Select two choices)