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
Explain main function in c?
Explain what is the benefit of using enum to declare a constant?
How is a pointer variable declared?
Why is void main used?
how to introdu5ce my self in serco
What is the heap in c?
Explain how do you determine whether to use a stream function or a low-level function?
What is c language and why we use it?
What is structure pointer in c?
What is the difference between union and anonymous union?
How to establish connection with oracle database software from c language?
Why do we use & in c?
How many identifiers are there in c?
What is quick sort in c?
What is && in c programming?