main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / a.jayashree
ans is=10;
if its wrong give me right ans to jshree20@gmail.com
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is a floating point in c?
How do I get a null pointer in my programs?
Explain the difference between structs and unions in c?
what is the difference between class and unio?
Why is python slower than c?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Explain function?
What is the difference between the local variable and global variable in c?
Can you add pointers together? Why would you?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is the symbol indicated the c-preprocessor?
What is the best way to comment out a section of code that contains comments?