What are arithmetic underflow and overflow in C?

前端 未结 4 1574
深忆病人
深忆病人 2020-12-05 07:57

What do arithmetic underflow and overflow mean in C programming?

4条回答
  •  情话喂你
    2020-12-05 08:17

    underflow depends exclusively upon the given algorithm and the given input data,and hence there is no direct control by the programmer .Overflow on the other hand, depends upon the arbitrary choice of the programmer for the amount of memory space reserved for each stack ,and this choice does influence the number of times overflow may occur

提交回复
热议问题