how to find a 5th bit is set in c program

Answer Posted / sumit kumar

Take the input 5 from keyword :-
#include<stdio.h>
main()
{
int num,pos;
printf("enter the no.:");
scanf("%d",&num);
printf("enter the position:");
scanf("%d",&pos);
if(num & (1<<pos))
{
printf("pos is set");
}
else
{
printf("pos is not set");
}
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c is a low level language?

765


Can you add pointers together? Why would you?

850


What is bash c?

749


write a program to print largest number of each row of a 2D array

2077


What is data types?

795


Explain enumerated types in c language?

779


What is meant by type specifiers?

871


What is sizeof in c?

754


What is the best way to store flag values in a program?

762


What are extern variables in c?

726


Explain why c is faster than c++?

794


Explain is it better to bitshift a value than to multiply by 2?

930


What is a floating point in c?

792


How are structure passing and returning implemented?

769


How are Structure passing and returning implemented by the complier?

903