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 8025033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:02:10+00:00 2026-06-04T23:02:10+00:00

The language I use is C. I have code as follows: int sign_x=~(x>>31)+1; int

  • 0

The language I use is C.

I have code as follows:

int sign_x=~(x>>31)+1;
int sign_y=~(y>>31)+1;
int sign=sign_x^sign_y;
return ((!sign)&(!(!(0x80000000&(y+(~x+1)))))+(sign&(!sign_x)));

When I set input x=2147483647[0x7fffffff],y=-2147483648[0x80000000],the result is 0.
I wonder why the result is 0 rather than 1 because the first part is 0 and the second part is 1.When I changed operator “+” to “|”,the result is OK.

Can anybody help me? Thanks

  • 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-06-04T23:02:11+00:00Added an answer on June 4, 2026 at 11:02 pm

    0 + 1 is 1, which means that the operator precedence is different than what you thought it is.

    gcc is clever enough to emit a warning for this:

    warning: suggest parentheses around ‘+’ in operand of ‘&’

    (!sign) & (!(!(0x80000000&(y+(~x+1)))))+(sign&(!sign_x)));
    

    add extra parentheses:

    ((!sign)&(!(!(0x80000000&(y+(~x+1)))))) + ((sign&(!sign_x))));
    

    or, since the expression is quite complex, temporarily store parts of the result:

    int part1 = ...
    int part2 = ...
    return part1 + part2;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am a beginner at java language and i use text pad. i have
I have a multiple language website, and I use a php get variable to
I have an idea for a functional programming language design that makes heavy use
I've been trying to use buildExpressionParser to parse a language, and I almost have
My situation is as follows: I use ubercart and I have 3 modules installed
The language I use is C. The type of x and n is int.
I was wondering what language to use when talking about a function that takes
I am trying in C language to use the method of bisection to find
How would I get the system's current language and use that for the ResourceBundle?
Could you suggest a syntax for the C language to use it in a

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.