Give a one-line C expression to test whether a number is a
power of 2.

Answers were Sorted based on User's Feedback



Give a one-line C expression to test whether a number is a power of 2...

Answer / lakshmi

void main()
{
int a;
scanf("%d",&a);

if((a&a-1)==0)
printf("Is a power of 2");
else
printf("Not a power of 2");
}

Is This Answer Correct ?    36 Yes 8 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / fallen angel

if(x&(x-1)==0)
then TRUE;
else
FALSE;

use the bitwise and operator

Is This Answer Correct ?    24 Yes 2 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / mayur shankariya

#include<stdio.h>
main()
{
int num;
printf("Enter Number
");
scanf("%d",&num);
(num & num - 1)? printf("Not
"):printf("Power of two
");
}

Is This Answer Correct ?    2 Yes 0 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / rarach

if( (a == 2 ) || ((a/2) %2 == 0 ) && a !=1)
TRUE
else
false

Is This Answer Correct ?    1 Yes 3 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / rohit

if((log(n)/log(2))/floor(log(n)/log(2))==1)
then TRUE;
else FALSE;

Is This Answer Correct ?    1 Yes 5 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / ramesh b penchal

#include<stdio.h>
main()
{
int n,i,d,m;
printf("Enter a number");
scanf("%d",&n);
m=n;
while(n>0)
{
d=n%10;
if(d!=0)
{
prntf("%d is not power of 2",m);
getch();
exit();
}
n=n/10;
}
prntf("%d is power of 2",m);
getch();
}

Is This Answer Correct ?    0 Yes 5 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / santhoo035

#include<iostream.h>
int main()
{
int n,i;
cout<<"Enter a number";
cin>>n;
for(i=1;i<n/2;i++)
{
if((2<<i)==n)
{
cout<<"The given no is power of 2";
break;
}
}
}

Is This Answer Correct ?    3 Yes 9 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / akshay rastogi

#include<conio.h>
void main()
{
int n,i=0,num=0;
printf("\n enter any number");
scanf("%d",&n);
while(num<=n)
{
i++;
num=2^i;
}
if(num==n)
printf("yes no. is power of 2");
else
printf("no.");
}

Is This Answer Correct ?    0 Yes 6 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / abc def

/*following expr evaluates to true if num is a power of
2.Else it's false. '&' - bitwise and.*/
(num == 1) || !(num & 1)

Is This Answer Correct ?    0 Yes 9 No

Give a one-line C expression to test whether a number is a power of 2...

Answer / trailokya ranjan jena

#include<stdio.h>
void main()
{
int i,j;
clrscr();
printf("\n Enter a num");
scanf("%d",&i);
j=i;
for(;i%2==0;i/=2);
if(i==1)
printf("\n%d is power of 2",j);
else
printf("\n%d is not a power of 2");
getch();
}

Is This Answer Correct ?    4 Yes 18 No

Post New Answer

More C Code Interview Questions

prog. to produce 1 2 3 4 5 6 7 8 9 10

4 Answers   TCS,


main() { struct date; struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }

1 Answers  


could you please send the program code for multiplying sparse matrix in c????

0 Answers  


Design an implement of the inputs functions for event mode

0 Answers   Wipro,


main(){ int a= 0;int b = 20;char x =1;char y =10; if(a,b,x,y) printf("hello"); }

1 Answers   TCS,






Write a program to model an exploding firecracker in the xy plane using a particle system

0 Answers   HCL,


Write a procedure to implement highlight as a blinking operation

2 Answers  


void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(“%d”,k); }

1 Answers  


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

3 Answers   Wipro,


Write a routine to implement the polymarker function

0 Answers   TCS,


why java is platform independent?

13 Answers   Wipro,


main() { extern i; printf("%d\n",i); { int i=20; printf("%d\n",i); } }

1 Answers  


Categories