main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / abhishek ranjan
32
| Is This Answer Correct ? | 37 Yes | 3 No |
Post New Answer View All Answers
How can you avoid including a header more than once?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
When should the const modifier be used?
Explain the array representation of a binary tree in C.
Why do we need functions in c?
Why clrscr is used in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is c token?
What does printf does?
Explain the priority queues?
What does s c mean in text?
What is the difference between scanf and fscanf?
Which programming language is best for getting job 2020?
What are the different categories of functions in c?
What is meant by realloc()?