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
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is volatile keyword in c?
Why c is called a mid level programming language?
Is c still relevant?
What is volatile variable in c with example?
How are 16- and 32-bit numbers stored?
Compare array data type to pointer data type
List some applications of c programming language?
Can you write the algorithm for Queue?
What is %d called in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain how many levels deep can include files be nested?
What are the types of pointers in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol