main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / ram
Ans=32
Is This Answer Correct ? | 273 Yes | 22 No |
Post New Answer View All Answers
Differentiate between functions getch() and getche().
Are there namespaces in c?
What is pointer to pointer in c with example?
How are pointers declared in c?
Explain logical errors? Compare with syntax errors.
Differentiate between a for loop and a while loop? What are it uses?
What 'lex' does?
What is the ANSI C Standard?
What are qualifiers and modifiers c?
Differentiate between static and dynamic modeling.
What is the purpose of main() function?
Where we use clrscr in c?
Write a program to implement queue.
What is volatile variable in c with example?
Tell me what are bitwise shift operators?