main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answers were Sorted based on User's Feedback
Answer / vineetha
tell this answer and mail to this id vachika90@gmail.com
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sanjay bhosale
statement a=b<<a + b>>2;
will be treated as
a=(b<<(a+b))>>2;
and gives output 32.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / a.jayashree
ans is=10;
if its wrong give me right ans to jshree20@gmail.com
Is This Answer Correct ? | 0 Yes | 2 No |
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
difference between object file and executable file
How is a pointer variable declared?
What is a 'null pointer assignment' error?
How can I read/write structures from/to data files?
What are global variables and how do you declare them?
Can we include one C program into another C program if yes how?
Explain the meaning of keyword 'extern' in a function declaration.
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is a pointer variable in c language?
Explain how are 16- and 32-bit numbers stored?
What is the value of uninitialized variable in c?