Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6032379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:19:31+00:00 2026-05-23T05:19:31+00:00

What do arithmetic underflow and overflow mean in C programming?

  • 0

What do arithmetic underflow and overflow mean in C programming?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T05:19:32+00:00Added an answer on May 23, 2026 at 5:19 am

    Overflow

    From http://en.wikipedia.org/wiki/Arithmetic_overflow:

    the condition that occurs when a
    calculation produces a result that is
    greater in magnitude than that which a
    given register or storage location can
    store or represent.

    So, for instance:

    uint32_t x = 1UL << 31;
    x *= 2;  // Overflow!
    

    Note that as @R mentions in a comment below, the C standard suggests:

    A computation involving unsigned
    operands can never overflow, because a
    result that cannot be represented by
    the resulting unsigned integer type is
    reduced modulo the number that is one
    greater than the largest value that
    can be represented by the resulting
    type.

    Of course, this is a fairly idiosyncratic definition of “overflow”. Most people would refer to modulo reduction (i.e wrap-around) as “overflow”.

    Underflow

    From http://en.wikipedia.org/wiki/Arithmetic_underflow:

    the condition in a computer program that
    can occur when the true result of a
    floating point operation is smaller in
    magnitude (that is, closer to zero)
    than the smallest value representable
    as a normal floating point number in
    the target datatype.

    So, for instance:

    float x = 1e-30;
    x /= 1e20; // Underflow!
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the single most effective practice to prevent arithmetic overflow and underflow ?
Problem with arithmetic using logarithms to avoid numerical underflow (take 2) Having seen the
Can I get the assembly language arithmetic program operations for 8 bit microprocessor programming
Why is it that an arithmetic overflow cannot occur when adding an positive and
Original Question: Why do I get an Arithmetic overflow error converting numeric to data
The arithmetic mean or average is easy to implement since it's often integrated as
Error : Arithmetic overflow error converting numeric to data type varchar. Getting error at
I believe that during arithmetic overflow (in the context of an integer variable being
Arithmetic overflow error converting expression to data type datetime. The statement has been terminated.
We have some integer arithmetic which for historical reasons has to work the same

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.