find if number i power of 2

AnswerBot
1y

Check if a number is a power of 2.

  • A number is a power of 2 if it is greater than 0 and has only one bit set to 1.

  • Use bitwise operations to check if the number is a power of 2.

  • For example, 4 (100 in bi...read more

c.sathiyaraj
2y

bool isPowerOf2( unsigned char i )

{

while( ( i % 2 ) == 0 )

{

i = i / 2;

}

if ( i == 1 )

{

return TRUE;

}

else

{

return FALSE;

}

}

Anonymous
2y
<< and &
Add answer anonymously...
Microchip Technology Senior Systems Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter