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
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is boolean in c?
Which is the best website to learn c programming?
Explain Basic concepts of C language?
What is static and volatile in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Explain the term printf() and scanf() used in c language?
Explain setjmp()?
What is the difference between malloc() and calloc()?
What is the use of #include in c?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Why shouldn’t I start variable names with underscores?
What is variable in c example?
How was c created?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above