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
Can the size of an array be declared at runtime?
What is sizeof c?
What are data structures in c and how to use them?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Can a pointer be volatile in c?
Can a void pointer point to a function?
Differentiate between full, complete & perfect binary trees.
Lists the benefits of c programming language?
Why header file is used in c?
How do I send escape sequences to control a terminal or other device?
How can I convert a number to a string?
How can you allocate arrays or structures bigger than 64K?
What will the preprocessor do for a program?
Why does notstrcat(string, "!");Work?
What is the function of multilevel pointer in c?