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
Is c is a low level language?
Can you add pointers together? Why would you?
What is bash c?
write a program to print largest number of each row of a 2D array
What is data types?
Explain enumerated types in c language?
What is meant by type specifiers?
What is sizeof in c?
What is the best way to store flag values in a program?
What are extern variables in c?
Explain why c is faster than c++?
Explain is it better to bitshift a value than to multiply by 2?
What is a floating point in c?
How are structure passing and returning implemented?
How are Structure passing and returning implemented by the complier?