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 |
Which sorting algorithm is the best?
what is difference between #include<stdio.h> and #include"stdio.h"
Dont ansi function prototypes render lint obsolete?
Explain how can you determine the size of an allocated portion of memory?
Program to find largest of three numbers without using comparsion operator?
What is the difference between union and anonymous union?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What is sparse file?
write a program to display the frequency of each element in a given array in c language
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
Difference between for loop and while loop?