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 are the different properties of variable number of arguments?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
How can I find out how much free space is available on disk?
What are different storage class specifiers in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is the difference between malloc() and calloc()?
How does pointer work in c?
What is ambagious result in C? explain with an example.
What is the use of static variable in c?
What is difference between array and pointer in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is queue in c?
Explain how can I write functions that take a variable number of arguments?
can anyone suggest some site name..where i can get some good data structure puzzles???
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none