main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / vinod
8
| Is This Answer Correct ? | 8 Yes | 33 No |
Post New Answer View All Answers
Which built-in library function can be used to match a patter from the string?
What is the use of sizeof () in c?
Can you add pointers together? Why would you?
How can I read/write structures from/to data files?
What is s or c?
Write a program to check whether a number is prime or not using c?
How does struct work in c?
If I have a char * variable pointing to the name of a function ..
Explain is it better to bitshift a value than to multiply by 2?
In a switch statement, explain what will happen if a break statement is omitted?
Explain the difference between malloc() and calloc() function?
What is static and auto variables in c?
Why c is called object oriented language?
How will you divide two numbers in a MACRO?
What is the basic structure of c?