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
What is difference between static and global variable in c?
Explain what is a pragma?
how to create duplicate link list using C???
What is difference between constant pointer and constant variable?
What are keywords c?
What is difference between union All statement and Union?
Why do we use pointer to pointer 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 scope rule of function in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Are there namespaces in c?
Why malloc is faster than calloc?
What is an operator?
Why can’t we compare structures?
What is static identifier?