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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:09:32+00:00 2026-05-16T22:09:32+00:00

Seeking to clarify something. It is my understanding that with regard to arithmetical, logical

  • 0

Seeking to clarify something.

It is my understanding that with regard to arithmetical, logical bitwise shifts:

  1. << work the same for both
  2. >> shifts differ in that logical shift will always pad byte with 0, whereas arithmetical shift will pad it with the sign bit.

How can I differentiate this using C?

From what I understand, actual operators are the same <<,>>

How would command differ between:

int i=1;
printf ("%d\n", i >> 1); // logical shift

int j=1;
printf ("%d\n", j >> 1); // arithmetical shift

Please let me know,

  • 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-16T22:09:32+00:00Added an answer on May 16, 2026 at 10:09 pm

    In case of nonnegative numbers, both kinds of right-shifts are the same. The difference appears only when the number to shift is negative.

    Actually the C standard does not specify when should >> perform logical or arithmetic shift when the number is negative, but typically, it performs arithmetic shift. To perform logical shift, the number must be cast to the corresponding unsigned type, for example:

    int x = -2;
    int y = x >> 1;    // arithmetic shift.
    assert (y == -1);
    int z = (unsigned)x >> 1;  // logical shift.
    assert (z == 0x7FFFFFFF);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Seeking to create an event handler that registers a callback and iterates based on
I have some pages that have content that is relevant to both logged in
Just to clarify, I mean something like: class foon { private $barn = null;
Seeking your help to get off .epub(s) sea in iPhone world... I am trying
Seeking help to design a layout as shown here: http://docs.google.com/Doc?docid=0AQhgDtGvE2HgZGZ6cmtua185MTd0eGdyZmc&hl=en The major challenge I
Seeking means to get Fabric to automatically (instead of user-interactively) interact with shell commands
Just seeking confirmation here : apache Thrift protocol does not seem to support running
I am seeking for the advantages of having Spring deployed on Tomcat rather then
I'm seeking further clarification after seeing What is responsible for releasing NSWindowController objects? I'm
I am seeking a method to extract into separate images the Luma (Y), Cb

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.