main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}

Answers were Sorted based on User's Feedback



main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }..

Answer / vinod

8

Is This Answer Correct ?    8 Yes 33 No

Post New Answer

More C Interview Questions

Explain low-order bytes.

0 Answers  


main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............

3 Answers  


Why void is used in c?

0 Answers  


Write code for finding depth of tree

2 Answers   Adobe,


can we initialize all the members of union?

2 Answers  






Subtract Two Number Without Using Subtraction Operator

0 Answers  


How to create struct variables?

0 Answers  


How can I recover the file name given an open stream?

0 Answers  


who invented c

13 Answers   IBM,


The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

0 Answers  


dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 Answers  


Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.

8 Answers  


Categories