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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:15:35+00:00 2026-06-14T09:15:35+00:00

I am a little bit confused while I’m trying to determine if a number

  • 0

I am a little bit confused while I’m trying to determine if a number is even / uneven using only logical operators (||, &&).

I’m used to:

if (x%2)
   printf("Number is even");
else
   printf("Number is not even");

Is there any algorithm that determinates the parity of a number ? If there is, can you give me some documentation ?

Best regards,
Duluman Edi

  • 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-14T09:15:37+00:00Added an answer on June 14, 2026 at 9:15 am

    Can you do shifting first? You can accomplish the same “bit” logic with the logical operators if you use just 1 bit, so for example:

    int num = 0x14; // 0000 0000 0001 0100
    unsigned short shift_num = num << 15; // 0000 0000 0000 0000
    
    if(shift_num && 1)
        printf("it's odd\n");
    else
        printf("it's even\n");
    

    So anything non-0 && 1 gives you 1, in this case we shiffted off all but the lowest bit, if it’s even (as above) it leaves you with 0 and 0 && 1 is false so "it's even" is printed. If we use an odd number:

    int num = 0x15; // 0000 0000 0001 0101
    unsigned short shift_num = num << 15; // 1000 0000 0000 0000
    

    Now there’s a non-0 number there with the 1 so we’ll get "it's odd"

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am little bit confused about following problem & their solutions: i have 2
I am a little bit confused about 2 things. Firstly when I create an
I'm a little bit confused. I want to start learn Flex3 with Eclipse and
I am a little bit confused on something, see I am doing an Ajax
I am a little bit confused by the PHP function declare . What exactly
I am a little bit confused with Doctrine class. I created a class and
I´m a little bit confused by reading all the posts and tutorials about starting
I'm a little bit confused on how handle memory management when dealing with graphics
I am little bit confused about this statement that I read in a book
I'm a little bit confused with Html helpers in MVC3. I used this syntax

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.