Answer Posted / rajkumar
#include<stdio.h>
void main()
{
int a;
a=a>>4;
if(a%2==1)
printf("the bit is set");
else
printf("the bit is not set");
}
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
What is the function of volatile in c language?
What is the difference between variable declaration and variable definition in c?
How can I avoid the abort, retry, fail messages?
Why is c platform dependent?
How can I generate floating-point random numbers?
What is the use of #include in c?
In which header file is the null macro defined?
What is return type in c?
what is a function method?give example?
Write a simple code fragment that will check if a number is positive or negative.
What is wild pointer in c with example?
What was noalias and what ever happened to it?
a program that can input number of records and can view it again the record
Is calloc better than malloc?
Why is c fast?