main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / manish soni tagore collage jai
b<<a=2<<4=32;
and
b>>2=1>>2=0
so
32+0=32
| Is This Answer Correct ? | 47 Yes | 5 No |
Post New Answer View All Answers
Wt are the Buses in C Language
Why is c called c?
#include
Is c easy to learn?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is a nested loop?
Explain what is the difference between null and nul?
What are variables c?
How can you convert integers to binary or hexadecimal?
How many types of errors are there in c language? Explain
How would you obtain the current time and difference between two times?
using for loop sum 2 number of any 4 digit number in c language
Is boolean a datatype in c?
What is the scope of global variable in c?
How can you determine the maximum value that a numeric variable can hold?